From 2cceb3a9d7b40d24274ea604bb97f1d2e23ecbfd Mon Sep 17 00:00:00 2001
From: David Anderson <davea@ssl.berkeley.edu>
Date: Mon, 28 Jul 2003 23:44:25 +0000
Subject: [PATCH] Removed sanitization comments from functino output.

svn path=/trunk/boinc/; revision=1843
---
 html/user/htmlfilter.inc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

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 = "<!-- begin sanitized html -->\n";
+  $trusted = ""; /* "<!-- begin sanitized html -->\n";*/
   $skip_content = false;
   /**
    * Take care of netscape's stupid javascript entities like
@@ -978,7 +978,7 @@ function sanitize($body,
     }
     $trusted .= "\n";
   }
-  $trusted .= "<!-- end sanitized html -->\n";
+  /*$trusted .= "<!-- end sanitized html -->\n";*/
   return $trusted;
 }
 ?>