Posted on Saturday 24th March 2007 at 12:51 PM
ShadowMage
ShadowMage
For the censor function delete it and replace it with:

Code

function censor($text, $replacement = "<b>Censored</b>"){ // they said bad thing lets import it...

if( strlen($text) > 0 ){ //if there was actually text..
$name = 'badwords.txt'; //get our bad words
$words = file($name); //make sure its a file

$text = str_replace($words, $replacement, $text); //return censored text.
} //end if
}
Posted on Saturday 24th March 2007 at 12:23 PM
hostel
hostel
It doesnt work for me. It just say:
Parse error: syntax error, unexpected $end in Usersystem/functions.php on line 35
Could you make all downloadable?
No more comments to show.