summaryrefslogtreecommitdiff
path: root/pages
diff options
context:
space:
mode:
authorBenny Baumann <BenBE@geshi.org>2013-03-13 18:38:52 +0100
committerBenny Baumann <BenBE@geshi.org>2013-03-13 18:38:52 +0100
commit3c4d3fa9a9bf74090fc5ef86847e0a1b58f5c96f (patch)
treefd137a1f18513e93f7be35256cbed2d013c19cd6 /pages
parente876e93e5941e295807c311a990775a2188d4d4a (diff)
downloadcacert-devel-3c4d3fa9a9bf74090fc5ef86847e0a1b58f5c96f.tar.gz
cacert-devel-3c4d3fa9a9bf74090fc5ef86847e0a1b58f5c96f.tar.xz
cacert-devel-3c4d3fa9a9bf74090fc5ef86847e0a1b58f5c96f.zip
bug 1124: Avoid duplicate escaping and do ordering by localebug-1124
Diffstat (limited to 'pages')
-rw-r--r--pages/account/41.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/pages/account/41.php b/pages/account/41.php
index 148944a..4974537 100644
--- a/pages/account/41.php
+++ b/pages/account/41.php
@@ -69,15 +69,15 @@ require_once($_SESSION['_config']['filepath'].'/includes/lib/l10n.php');
<td class="DataTD"><?=_("Secondary languages")?>:</td>
<td class="DataTD"><select name="addlang">
<?
- $query = "select * from `languages` order by `lang`,`country`";
+ $query = "select * from `languages` order by `locale`";
$res = mysql_query($query);
while($row = mysql_fetch_assoc($res))
{
printf("<option value=\"%s\">[%s] %s (%s)</option>\n",
sanitizeHTML($row['locale']),
sanitizeHTML($row['locale']),
- sanitizeHTML($row['lang']),
- sanitizeHTML($row['country'])
+ $row['lang'],
+ $row['country']
);
}
?>