1
Hi I downloaded this module and its not working anymore with the current release of xoops.
https://xoops.org/modules/repository/singlefile.php?cid=43&lid=1338---------------------------------------------------------
I changed this string based on the fix provided by ajuden
on the myAds module which worked perfect. See his post here.
https://xoops.org/modules/newbb/viewtopic.php?forum=28&topic_id=25272Original
$result=$xoopsDB->query("select cid, title, img FROM ".$xoopsDB->prefix("ann_categories")." WHERE pid = 0 ORDER BY $classm") or die("Error");
New
$result=$xoopsDB->query("select cid, title, img FROM ".$xoopsDB->prefix("ann_categories")." WHERE pid = 0 ORDER BY title") or die("Error");
All I did was replaced the $classm variable with the actual column that we want to sort by (title).
----------------------------------------------------------
However this time the fix did not work! Does anyone have any ideas how to get the module back to working condition?