I like this hack, but it broke my 'reported post creates new thread' for staff members - and the same for GARS, so I've applied a small fix to my copy of the hack.
In the AEO 'init_startup' hook ;
Find ;
PHP Code:
global $vbulletin;
Add below it ;
PHP Code:
// Bypass Options //
// By Paul M - Because some mods choke on AEO //
$bypass_aeo = false;
if (THIS_SCRIPT == 'report') $bypass_aeo = true;
if (is_object($vbulletin->gars)) $bypass_aeo = true;
if ($bypass_aeo) {
$vbulletin->userinfo['editlevel'] = EDITLEVEL_AUTHOR;
return EDITLEVEL_AUTHOR;
}
// End of bypass options //
I've also added a 'cache_templates' hook ;
PHP Code:
$globaltemplates[] = 'adv_editform';