great hack alan....one question before upgrading...
should i delete the changes made in version 1.0??
i mean the ones in
hooks_vbulletin.xml and
postings.php
instructions for edit / delete thread
Quote:
-----------------------------------------------------
open $vbuletinroot/includes/xml/hooks_vbulletin.xml
[find]
<hook>threadmanage_complete</hook>
[add below]
<hook>threadmanage_editthread</hook>
<hook>threadmanage_deletethread</hook>
open $vbulletinroot/postings.php
[find]
eval(print_standard_redirect('redirect_editthread' ));
just above his
add
($hook=vBulletinHook::fetch_hook('threadmanage_edi tthread'))? eval($hook) : false;
find
eval(print_standard_redirect('redirect_deletethrea d'));
just above this
($hook=vBulletinHook::fetch_hook('threadmanage_del etethread'))? eval ($hook) : false;
|