diff options
author | INOPIAE <inopiae@cacert.org> | 2012-12-15 09:48:24 +0100 |
---|---|---|
committer | INOPIAE <inopiae@cacert.org> | 2012-12-15 09:48:24 +0100 |
commit | da058f16eb5413d0c859196cbe837dc8328f27a5 (patch) | |
tree | 63bdbebabb864114b4dcdc453b9ae02a4895b49f | |
parent | 7baaa9a0ac611329539a43031ca3d0e81bba2b5f (diff) | |
download | cacert-devel-da058f16eb5413d0c859196cbe837dc8328f27a5.tar.gz cacert-devel-da058f16eb5413d0c859196cbe837dc8328f27a5.tar.xz cacert-devel-da058f16eb5413d0c859196cbe837dc8328f27a5.zip |
Bug 1124: changed the order of the entries from country-language to language-country
-rw-r--r-- | pages/account/41.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pages/account/41.php b/pages/account/41.php index d2cfc8c..26ad11c 100644 --- a/pages/account/41.php +++ b/pages/account/41.php @@ -74,7 +74,7 @@ require_once($_SESSION['_config']['filepath'].'/includes/lib/l10n.php'); while($row = mysql_fetch_assoc($res)) { echo "<option value='".sanitizeHTML($row['locale'])."'"; - echo ">".$row['country']." - ".$row['lang']."</option>\n"; + echo ">".$row['lang']." - ".$row['country']."</option>\n"; } ?> </select> |