FIX from vb.org

ver_shine said:

find the plugin titled "Main Doublepost Prevent Engine" look for this line:

Code:
// last step update counters

below it add these two lines:

Code:
$vbulletin->db->query_first("UPDATE `" . TABLE_PREFIX . "post` SET `lastedit` = UNIX_TIMESTAMP() WHERE `" . TABLE_PREFIX . "post`.`postid` = $id LIMIT 1");
$vbulletin->db->query_first("UPDATE `" . TABLE_PREFIX . "thread` SET `lastedit` = UNIX_TIMESTAMP() WHERE `" . TABLE_PREFIX . "thread`.`threadid` = $threadinfo[threadid] LIMIT 1");

then it should be fine
 
So is this a 'fix' to stop double-post errors?

I looked in my ACP->Plugins & Products->Plugin Manager but I wasn't able to find 'Main Doublepost Prevent Engine'.

Is this plugin a default in VB or do I need to install it first?

If so, can someone please upload it for me. My forums keep getting double-posts :(
 
Back
Top