diff options
author | Felix Dörre <felix@dogcraft.de> | 2014-06-10 23:36:17 +0200 |
---|---|---|
committer | Felix Dörre <felix@dogcraft.de> | 2014-06-10 23:37:09 +0200 |
commit | 746465b4024f1ab6f2c7dad9759b46c0e7fb77df (patch) | |
tree | a0c00fdff15939352a234e27b3a41a55ff11a114 | |
parent | 2affa9c6e9a1f2a7f68ab5fa306374cd037d6227 (diff) | |
download | cacert-devel-746465b4024f1ab6f2c7dad9759b46c0e7fb77df.tar.gz cacert-devel-746465b4024f1ab6f2c7dad9759b46c0e7fb77df.tar.xz cacert-devel-746465b4024f1ab6f2c7dad9759b46c0e7fb77df.zip |
bug 1283: remove double encodingbug-1283
The locales are already encoded in the Database.
-rw-r--r-- | pages/wot/9.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pages/wot/9.php b/pages/wot/9.php index a8b9413..3cdf259 100644 --- a/pages/wot/9.php +++ b/pages/wot/9.php @@ -61,7 +61,7 @@ ?> <tr> <td class="DataTD"><?=_("Additional Language")?>:</td> - <td class="DataTD" align="left"><? printf(_("%s will also accept email in %s - %s"), sanitizeHTML($user['fname']), sanitizeHTML($lang['lang']), sanitizeHTML($lang['country'])) ?></td> + <td class="DataTD" align="left"><? printf(_("%s will also accept email in %s - %s"), sanitizeHTML($user['fname']), $lang['lang'], $lang['country']) ?></td> </tr> <? } ?> <tr> |