
06-27-2010, 07:42 AM
|
|
|
Join Date: Nov 2008
Location: Istanbul
Posts: 24
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
vb 4.0.4:
Quote:
Originally Posted by ientrydave
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.
|
|