From 3e48640dd87968c950c6f89acb83f0932e77f2cb Mon Sep 17 00:00:00 2001 From: Karl Chen Date: Sun, 7 Sep 2003 23:51:32 +0000 Subject: [PATCH] *** empty log message *** svn path=/trunk/boinc/; revision=2309 --- html/user/team.inc | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/html/user/team.inc b/html/user/team.inc index 1782efafa0..284b42685f 100644 --- a/html/user/team.inc +++ b/html/user/team.inc @@ -39,7 +39,12 @@ function display_team_page($team, $user) { start_table(); row1("Team info"); if (strlen($team->description)) { - row2("Description", sanitize_html($team->description)); + // row2("Description", sanitize_html($team->description)); + // sanitize_html() is currently very buggy. it changes http:// to + // uucp://; strips tags that don't need to be stripped (like . if + // font should be stripped then style= tags should also be + // stripped!) -- quarl + row2("Description", $team->description); } if (strlen($team->url)) {; row2("Web site", "url>http://$team->url");