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");