Quote:
Originally Posted by Mum
Oh this is great  I am loving this mod!
have uninstalled double posts and all working fine now.
|
for double post in the plugin titled "Main Doublepost Prevent Engine" look for this line:
PHP Code:
// last step update counters
above 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");