*/ class OutputSanitizer { public static function nl2br($text) { return preg_replace("/(\r\n)+|(\n|\r)+/", "
", $text); } } ?>