From 587ece583b83d747c517a24426c7f9a4d47e9b38 Mon Sep 17 00:00:00 2001 From: Karl Chen Date: Wed, 15 Oct 2003 08:26:32 +0000 Subject: [PATCH] *** empty log message *** svn path=/trunk/boinc/; revision=2473 --- html/user/util.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/html/user/util.inc b/html/user/util.inc index d58c6053d3..1e4627447d 100644 --- a/html/user/util.inc +++ b/html/user/util.inc @@ -222,8 +222,8 @@ function print_country_select($country="None") { global $countries; $numCountries = count($countries); for ($i=0; $i<$numCountries; $i++) { - $country = $countries[i]; - $selected = $countries[i] == $country ? "selected":""; + $country = $countries[$i]; + $selected = $countries[$i] == $country ? "selected":""; echo "\n"; } }