
06-06-2008, 02:32 AM
|
|
|
Join Date: Dec 2004
Posts: 6
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by ZombieAndy
Dosn't work, just makes the screen go white and nothing else.
This is my code, i might of missed something obvious..
PHP Code:
if ($vbulletin->options['enablecensor'] AND !empty($vbulletin->options['censorwords']))
{
if ((isset($vbulletin->userinfo['field13'])) && ($vbulletin->userinfo['field13'] != "Yes"))
{
return $text;
}
if (empty($censorwords))
{
return $text;
}
|
Remove the second
PHP Code:
{ return $text; }
|