*** empty log message ***

svn path=/trunk/boinc/; revision=2472
This commit is contained in:
Karl Chen 2003-10-15 08:26:31 +00:00
parent 746479ba37
commit ac99ea413b
2 changed files with 2 additions and 1 deletions

View File

@ -6788,6 +6788,7 @@ Karl 2003-10-14
Karl 2003-10-14
- replaced C country_select program with a php function
- replaced "None or International" with "None" and "International"
lib/
countries.C (removed)

View File

@ -224,7 +224,7 @@ function print_country_select($country="None") {
for ($i=0; $i<$numCountries; $i++) {
$country = $countries[i];
$selected = $countries[i] == $country ? "selected":"";
echo "<option value='$country' $selected>$country</option>\n",
echo "<option value='$country' $selected>$country</option>\n";
}
}