diff options
author | Gabriel Vazquez <leviatan21@phpbb.com> | 2009-06-20 19:23:02 +0000 |
---|---|---|
committer | Gabriel Vazquez <leviatan21@phpbb.com> | 2009-06-20 19:23:02 +0000 |
commit | c3da86afc6be7183cdf320fe6ff0f6f5ffe46c28 (patch) | |
tree | 12b475157e333fd3416c583ef4fc417d337f34e2 /phpBB/includes/acp/acp_language.php | |
parent | 433de350c0fa2e1e09c23e6f5f29f118222d2df8 (diff) | |
download | forums-c3da86afc6be7183cdf320fe6ff0f6f5ffe46c28.tar forums-c3da86afc6be7183cdf320fe6ff0f6f5ffe46c28.tar.gz forums-c3da86afc6be7183cdf320fe6ff0f6f5ffe46c28.tar.bz2 forums-c3da86afc6be7183cdf320fe6ff0f6f5ffe46c28.tar.xz forums-c3da86afc6be7183cdf320fe6ff0f6f5ffe46c28.zip |
Fixed bug #45735
Authorised by: AcydBurn
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9637 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/acp/acp_language.php')
-rw-r--r-- | phpBB/includes/acp/acp_language.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/acp/acp_language.php b/phpBB/includes/acp/acp_language.php index 71970b4b50..3eee702b1d 100644 --- a/phpBB/includes/acp/acp_language.php +++ b/phpBB/includes/acp/acp_language.php @@ -1254,7 +1254,7 @@ $lang = array_merge($lang, array( $keys = func_get_args(); $non_static = array_shift($keys); - $value = array_shift($keys); + $value = utf8_normalize_nfc(array_shift($keys)); if (!$non_static) { |