From f2a16d4e52c082e211f2e5923398c1f2dce54936 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Tue, 15 Jun 2004 08:16:07 +0000 Subject: [PATCH] corrected typo --- phpgwapi/inc/class.sbox.inc.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/phpgwapi/inc/class.sbox.inc.php b/phpgwapi/inc/class.sbox.inc.php index eef54eb69f..d125589ba9 100644 --- a/phpgwapi/inc/class.sbox.inc.php +++ b/phpgwapi/inc/class.sbox.inc.php @@ -59,14 +59,14 @@ unset($country); unset($this->country_array[' ']); // try to translate them and sort alphabetic - foreach($this->countrys as $k => $name) + foreach($this->country_array as $k => $name) { if (($translated = lang($name)) != $name.'*') { - $this->countrys[$k] = $translated; + $this->country_array[$k] = $translated; } } - asort($this->countrys); + asort($this->country_array); } }