Okay, I edit line 472... it READ (past tense):
PHP Code:
$smilies = $this->registry->db->query_read("
SELECT *, LENGTH(smilietext) AS smilielen
FROM " . TABLE_PREFIX . "smilie
ORDER BY smilielen DESC
");
Now it says as follows...
PHP Code:
$smilies = $this->registry->db->query("
SELECT *, LENGTH(smilietext) AS smilielen
FROM " . TABLE_PREFIX . "smilie
ORDER BY smilielen DESC
");
The my news script works now. But will editing the class_bbcode.php file screw up my forums? Topics and bbcode still display properly as far as I can see. What concerns should I take?