From 62ba94f0cf3263d84ac1bf0d1d10b7eaedcf0999 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rytis=20Slatkevi=C4=8Dius?= Date: Fri, 29 Jun 2007 16:11:59 +0000 Subject: [PATCH] Fix #303 (was introduced in [12691]) svn path=/trunk/boinc/; revision=13052 --- html/user/team_create_action.php | 2 +- html/user/team_edit_action.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/html/user/team_create_action.php b/html/user/team_create_action.php index d6121ccca7..517af36d87 100644 --- a/html/user/team_create_action.php +++ b/html/user/team_create_action.php @@ -23,7 +23,7 @@ if (!is_valid_team_type($type)) { } $name_html = process_user_text(post_str("name_html", true)); -$description = boinc_htmlentities(process_user_text(post_str("description", true))); +$description = process_user_text(post_str("description", true)); $country = process_user_text(post_str("country", true)); if (!is_valid_country($country)) { diff --git a/html/user/team_edit_action.php b/html/user/team_edit_action.php index d5530a272c..b1dcdabe80 100644 --- a/html/user/team_edit_action.php +++ b/html/user/team_edit_action.php @@ -21,7 +21,7 @@ if ($user->teamid == $teamid) { $team_name = boinc_htmlentities(process_user_text(strip_tags(post_str("name")))); $team_name_lc = strtolower($team_name); $team_name_html = process_user_text(post_str("name_html", true)); //Do we really not want to - $team_description = boinc_htmlentities(process_user_text(post_str("description", true))); //scrub out bad HTML tags? + $team_description = process_user_text(post_str("description", true)); //scrub out bad HTML tags? $type = process_user_text(post_str("type", true)); $country = process_user_text(post_str("country", true));