From ac99ea413be0aa363514b0bd9823cbbaeecd9b21 Mon Sep 17 00:00:00 2001 From: Karl Chen Date: Wed, 15 Oct 2003 08:26:31 +0000 Subject: [PATCH] *** empty log message *** svn path=/trunk/boinc/; revision=2472 --- checkin_notes | 1 + html/user/util.inc | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/checkin_notes b/checkin_notes index 98d84f4a91..aa80b1dbce 100755 --- a/checkin_notes +++ b/checkin_notes @@ -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) diff --git a/html/user/util.inc b/html/user/util.inc index e066eaa3f9..d58c6053d3 100644 --- a/html/user/util.inc +++ b/html/user/util.inc @@ -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 "\n", + echo "\n"; } }