1
hi All
I am using SmartFAQ 1.0.4 (from one of the XOOPS 2.2.x packages) on XOOPS 2.2.4.
When I go to the module adminisration and click on the Blocks and Groups tab, I get a blank page.
I think the culprit is line 49 in /modules/smartfaq/admin/myblocksadmin.php
$block_arr =& XoopsBlock::getByModule( $xoopsModule->mid() ) ;
Can anybody help?
Thank you very much in anticipation
gui
Hi All
I've found the solution.
Replace line 49 by
$block_handler = &xoops_gethandler('block');
$block_arr =& $block_handler->getByModule($xoopsModule->mid()) ;
Actually this was to solution given to by the Forumilize developer for the same problem.
Regards
Gui