Quote:
Originally Posted by karlm
On my test forum, which consists of only vb: 3.7.2PL2 and vblog1.0.5 (and this nomination hack), I have a database error:
This is caused, repeatedly, when in the ACP and attempting to run the 'refresh poll thread' function of the left hand menu.
Any ideas?
|
The file "upload/admin/nominate_topic_admin.php" must be updated.
At the bottom of the file replace:
$vbulletin->db->query_write("DELETE FROM postparsed WHERE `postid` = '$nominationthread_postid'");
with this fix by TsirhCitna:
Quote:
Originally Posted by TsirhCitna
Actually the line should be:
Code:
$vbulletin->db->query_write("DELETE FROM ". TABLE_PREFIX ."postparsed WHERE `postid` = '$nominationthread_postid'");
It's working now with the table prefix added.
|
Shortly, I will release an updated version containing the latest feedback implemented.