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"; } }