Quote:
Originally Posted by Coders Shack
find the plugin titled "Main Doublepost Prevent Engine" look for this line:
PHP Code:
// last step update counters
below it add these two lines:
PHP 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 
|
This doesn't work correctly. Now when I double post my post keeps reappearing through ajax effects and all as if it were a new post being called by Live Topic.
Wow... it just keeps on reappearing even after a page refresh.
Edit: and my post count has recently been increased by several hundred... I'm guessing every time it reappeared I had a post added to my count. Would be nice to have a fix for this.