
10-17-2008, 10:59 PM
|
|
|
Join Date: Feb 2006
Posts: 13
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by Blind Guardian
I'm having some problems with adding custom conditionals. The plugin works fine, and auto-merges everything that it should, but I have a few forums that I would like to disable auto-merge in.
Before I upgraded to 3.7.2, I'd been able to just add those forums to the custom conditional as:
Code:
!in_array($vbulletin->forum['forumid'], array(###, ###))
But that no longer seems to work. I've tried doing it the long way too, but that doesn't seem to work either.
Code:
$vbulletin->forum['forumid'] != ### AND $vbulletin->forum['forumid'] != ###
Is it still possible to prevent auto-merging per forum?
Edit: Thought -- Do I now need to manually pull the forumid out of the database through the plugin code, rather than just in the additional conditions option box?
|
Hi...
for me worked this code:
Code:
in_array($foruminfo[forumid], array(###,###,###,###))
I have a 3.7.3 version!
very great mod for my forum!
|