Hi Lynne, I am not completely igorant of troubleshooting the plugin system and although I havn't spent much time working on it - I find that on a clean vB (my dev board) with only two forums the one specified in the censorship code still gets censored.
I will definitely try your suggestion at the fetch foruminfo hook point.
It's certainly a very simple switch to invoke!
Thanks heaps for following up on this situ.
I'm sure I have just got something wrong wth the plugin code given that I am hacking it into 3.8.3 and last mention of it working was 3.5 and 3.7...
incidently this is the one I have tried at global_start
PHP Code:
<?xml version="1.0" encoding="ISO-8859-1"?>
<plugins>
<plugin active="1" product="vbulletin">
<title>Disable Swear Censor Per Forum</title>
<hookname>global_start</hookname>
<phpcode><![CDATA[$theforumids = array(3);
if (in_array($forumid, $theforumids)) {
$vbulletin->options['enablecensor'] = 0;
}]]></phpcode>
</plugin>
</plugins>
looks ok right> forum 3 should allow the otherwise censored website?
Cheers WIll