PDA

View Full Version : Disabling some censorship words in PM?


Oclamora
06-30-2011, 03:05 PM
Hi,

Is it possible to disable some of the censored words in PM? if so, how can I do it?
Or If theres a way to censor some words in specific forums sections?

Thank you!

kh99
06-30-2011, 03:18 PM
It looks like $vbulletin->options['enablecensor'] controls whether censoring is on or off, and $vbulletin->options['censorwords'] is the list of words. So maybe if you created a plugin using hook location private_start and either turned off all censoring by setting $vbulletin->options['enablecensor'] = false, or else removed the words you don't want to censor from $vbulletin->options['censorwords'].

BTW, I haven't tried this at all.