Legacy Hooks Don't Save
Changing the legacy hooks checkboxes and the update won't save.
This is a report in response to this post:
http://www.crackedeggstudios.com/pro...suenoteid=1166
This was caused by an attempt we made to make this plugin compatible with the vBulletin addon "Advanced Product Manager." In order to fix this, the following change should be made to the plugin "AdminCP - Legacy Hook Activate" at hook
admin_options_processing:
Replace with:
PHP Code:
if ($oldsetting['varname'] == 'special_legacy_hooks')
{
special_admin_options_processing($vbulletin->GPC['setting']['special_legacy_hooks']);
if ($settings['special_legacy_hooks'] !== null)
{
$settings['special_legacy_hooks'] = $vbulletin->GPC['setting']['special_legacy_hooks'];
}
}