Nice hack, just wanted to mention that it installed fine on vBulletin 3.0.3.
Had a little problem with another hack but I managed to fix it. I fyou have the quick edit hack installed and tried to quick edit a post, all the options get reset like IP, userid and name, the date and so on.
If anyone else has this problem heres a quick fix, in the template "showthread_quickedit" find:
HTML Code:
<form enctype="multipart/form-data" name="vbulletinform" style="display:inline;" action="editpost.php" method="post">
and add under it:
HTML Code:
<input type="hidden" name="quickedit" value="true" />
Then find in editpost.php:
PHP Code:
if ($_POST['do'] == 'updatepost' AND $bbuserinfo['editlevel'] > $editlevel['author'])
and change it to:
PHP Code:
if ($_POST['do'] == 'updatepost' AND $bbuserinfo['editlevel'] > $editlevel['author'] AND !$_POST['quickedit'])
and that should solve that problem.
Also I notice a small problem with this hack, if you change the user of the post, the original poster count doesn't decrese and the new user post count doesn't increase so you would have to update the counters to get them accurate again. Other then that, its a good hack.