1
Hello,
Wordbook's blocks can cause many troubles to the other modules.
Here is a fix.
Edit /xoops/modules/wordbook/blocks/entries_top.php
and replace line 13 :
global $xoopsDB, $xoopsModule, $xoopsUser;
with :
global $xoopsDB;
edit /xoops/modules/worbook/blocks/entries_new.php
replace line 12 :
global $xoopsDB, $xoopsModule, $xoopsModuleConfig, $xoopsUser;
with :
global $xoopsDB, $xoopsUser;
and finally, in /xoops/modules/wordbook/blocks/random_term.php replace line 13 :
global $xoopsDB, $xoopsConfig, $xoopsModule, $xoopsModuleConfig, $xoopsUser;
with :
global $xoopsDB, $xoopsConfig, $xoopsUser;
A side effect of the bugs of its blocks is that other modules "loose" their preferences (and many things else like comments).
Bye,
Hervé