Ok. Trying to get a handle on how you are coding it.
Here's the default case where the hook sits...
PHP Code:
default:
$handled = false;
($hook = vBulletinHook::fetch_hook('online_location_unknown')) ? eval($hook) : false;
I take it by your reply (and the error) that you are simply adding a 'case' in your plugin, like this:-
PHP Code:
case 'something':
// etc...
So logically this would be interpreted like this:-
PHP Code:
default:
$handled = false;
case 'something':
// etc...
This would be incorrect syntax, and yes, your custom case would not be expected at that location. I think to cure that you would need to expand the plugin code to a full switch statement, or use an if...then construct.
Hows that looking, or have I missed something?