OK - seems MR PAULM has solved the issue - So I post for future reference...
quoted from:
http://www.thevbgeek.com/showthread.php?t=866&page=2
----------------
----------------
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 //