Fix #303 (was introduced in [12691])

svn path=/trunk/boinc/; revision=13052
This commit is contained in:
Rytis Slatkevičius 2007-06-29 16:11:59 +00:00
parent 5059102816
commit 62ba94f0cf
2 changed files with 2 additions and 2 deletions

View File

@ -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)) {

View File

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