diff --git a/html/user/htmlfilter.inc b/html/user/htmlfilter.inc
index 0b18fdbcfe..42a49102d6 100644
--- a/html/user/htmlfilter.inc
+++ b/html/user/htmlfilter.inc
@@ -861,7 +861,7 @@ function sanitize($body,
$rm_tags = array_shift($tag_list);
$curpos = 0;
$open_tags = Array();
- $trusted = "\n";
+ $trusted = ""; /* "\n";*/
$skip_content = false;
/**
* Take care of netscape's stupid javascript entities like
@@ -978,7 +978,7 @@ function sanitize($body,
}
$trusted .= "\n";
}
- $trusted .= "\n";
+ /*$trusted .= "\n";*/
return $trusted;
}
?>