corrected typo

This commit is contained in:
Ralf Becker 2004-06-15 08:16:07 +00:00
parent 5140181bba
commit f2a16d4e52

View File

@ -59,14 +59,14 @@
unset($country); unset($country);
unset($this->country_array[' ']); unset($this->country_array[' ']);
// try to translate them and sort alphabetic // 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.'*') if (($translated = lang($name)) != $name.'*')
{ {
$this->countrys[$k] = $translated; $this->country_array[$k] = $translated;
} }
} }
asort($this->countrys); asort($this->country_array);
} }
} }