diff --git a/checkin_notes b/checkin_notes index 340481b244..fb64705f78 100755 --- a/checkin_notes +++ b/checkin_notes @@ -5810,3 +5810,15 @@ Charlie 6 June 2007 mac/ SetupSecurity.cpp SetVersion.C + +David 6 June 2007 + - new elements in get_project_config.php + confuse the client because their element + gets parsed as the project name. + Work around by changing to . + + Note: here (and everywhere else) if we get an unparsed XML tag + we should skip to past the close tag. + I'll put this in soon. + html/user/ + get_project_config.php diff --git a/html/user/get_project_config.php b/html/user/get_project_config.php index cce6acce8f..306a710250 100644 --- a/html/user/get_project_config.php +++ b/html/user/get_project_config.php @@ -24,7 +24,7 @@ function show_platforms() { fwrite($f, "\n"); while ($p = mysql_fetch_object($result)) { fwrite($f, - " \n $p->name\n $p->user_friendly_name\n \n" + " \n $p->name\n $p->user_friendly_name\n \n" ); } mysql_free_result($result);