Removed sanitization comments from functino output.

svn path=/trunk/boinc/; revision=1843
This commit is contained in:
David Anderson 2003-07-28 23:44:25 +00:00
parent af4dcc229d
commit 2cceb3a9d7
1 changed files with 2 additions and 2 deletions

View File

@ -861,7 +861,7 @@ function sanitize($body,
$rm_tags = array_shift($tag_list); $rm_tags = array_shift($tag_list);
$curpos = 0; $curpos = 0;
$open_tags = Array(); $open_tags = Array();
$trusted = "<!-- begin sanitized html -->\n"; $trusted = ""; /* "<!-- begin sanitized html -->\n";*/
$skip_content = false; $skip_content = false;
/** /**
* Take care of netscape's stupid javascript entities like * Take care of netscape's stupid javascript entities like
@ -978,7 +978,7 @@ function sanitize($body,
} }
$trusted .= "\n"; $trusted .= "\n";
} }
$trusted .= "<!-- end sanitized html -->\n"; /*$trusted .= "<!-- end sanitized html -->\n";*/
return $trusted; return $trusted;
} }
?> ?>