Quote:
Originally Posted by SpankMe
My previously attached mods work in vB 4.0.
|
Thanks for working on it. We have this installed on several forums running various versions of vB (3.6.8 through 3.8.4) with no issues.
Quote:
Originally Posted by Krofh
Ahhh, my mistake. Looking into it, it turns out the $post variable doesn't have the forumid... change the first line I had you put in:
Code:
if ($post['forumid'] != 65) {
To the following:
Code:
if ($threadinfo['forumid'] != 65) {
When I did that on my server, it worked fine.
|
This needs to be updated for ajax. It causes a 'duplicate post' message with ajax quick reply. If you multiple forums to exclude and you don't use ajax, this code will work too:
Code:
if !in_array($threadinfo['forumid'], array(X,Y,Z)) {