I'm having trouble getting this plugin to work with vB 4.0.4. it worked great with 4.0.3. I tried re-uploading the xml and it didn't help. Any thoughts would be appreciated.
EDIT: I found the problem. In version 4.0.4, the $vbulletin variable is no longer global by default in the postbit_display_complete hook. Simple fix, just put
PHP Code:
global $vbulletin;
in front of
PHP Code:
if ($vbulletin->options['modtools_onoff'])
in the plugin manager.