SBB update instructions SBB 1.56 to 1.57 # #-----[ OPEN ]------------------------------------------ # functions.php # #-----[ FIND ]------------------------------------------ # $text = stripslashes(trim($text)); # #-----[ REPLACE WITH ]------------------------------------------ # $text = strip_tags(stripslashes(trim($text))); # #-----[ OPEN ]------------------------------------------ # includes/search.php # #-----[ FIND, 2 TIMES ]------------------------------------------ # "POST_MESSAGE" => nl2br(substr($post->message,0,255)) . "...", # #-----[ REPLACE WITH, 2 TIMES ]------------------------------------------ # "POST_MESSAGE" => nl2br(substr(strip_tags($post->message),0,255)) . "...", # # #-----[ SAVE/CLOSE ALL FILES ]------------------------------------------ # # EoM