6
No, AFAIK as I know this is the last one. And also literally, because the project seems abandoned.
A pity, I liked it as a lightweight shop, without no fuss.
Oledrion is fully fledged, but also a very large module.
The problem seems in comment_new.php
include '../../mainfile.php';
$com_itemid = isset($HTTP_GET_VARS['com_itemid']) ? intval($HTTP_GET_VARS['com_itemid']) : 0;
if ($com_itemid > 0) {
// Get link title
$sql = "SELECT title FROM " . $xoopsDB->prefix('mylinks_links') . " WHERE lid=" . $com_itemid . "";
$result = $xoopsDB->query($sql);
$row = $xoopsDB->fetchArray($result);
$com_replytitle = $row['title'];
include XOOPS_ROOT_PATH.'/include/comment_new.php';
}
It seems to be copied from a link module. The table related things (mylinks_links, lid, title) should be changed to the table as used for displaying items.