
08-28-2006, 05:15 PM
|
|
|
Join Date: Nov 2003
Posts: 763
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
this fixed mine on 3.6
Quote:
Originally Posted by Stoebi
Hi
Plugin 'Main Doublepost Prevent Engine' - Hook newpost_complete
Search for:
Code:
AND dateline > " . (TIMENOW - $vbulletin->options['xen_dp_timespan'] * 60) . "
Change to:
Code:
AND post.dateline > " . (TIMENOW - $vbulletin->options['xen_dp_timespan'] * 60) . "
Reason:
With vBulletin v3.6.x the row dateline exists in the tables post and deletionlog (ambiguous).
Regards, Stoebi
|
|