mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-02 14:57:37 +02:00
Fixed bug #45735
Authorised by: AcydBurn git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9637 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -124,6 +124,7 @@
|
|||||||
<li>[Fix] Fix unicode words wrong censoring. (Bug #16555 - Patch by rxu)</li>
|
<li>[Fix] Fix unicode words wrong censoring. (Bug #16555 - Patch by rxu)</li>
|
||||||
<li>[Fix] Display coloured usernames in ACP groups management screens</li>
|
<li>[Fix] Display coloured usernames in ACP groups management screens</li>
|
||||||
<li>[Fix] Correct the width value for poll_center.gif omitted in imageset.cfg for subsilver2. (Bug #43005 - Patch by rxu)</li>
|
<li>[Fix] Correct the width value for poll_center.gif omitted in imageset.cfg for subsilver2. (Bug #43005 - Patch by rxu)</li>
|
||||||
|
<li>[Fix] Correctly load complex language variable using acp_language (Bug #45735 - Patch by leviatan21)</li>
|
||||||
<li>[Change] Change the data format of the default file ACM to be more secure from tampering and have better performance.</li>
|
<li>[Change] Change the data format of the default file ACM to be more secure from tampering and have better performance.</li>
|
||||||
<li>[Change] Add index on log_time to the log table to prevent slowdown on boards with many log entries. (Bug #44665 - Patch by bantu)</li>
|
<li>[Change] Add index on log_time to the log table to prevent slowdown on boards with many log entries. (Bug #44665 - Patch by bantu)</li>
|
||||||
<li>[Change] Template engine now permits to a limited extent variable includes.</li>
|
<li>[Change] Template engine now permits to a limited extent variable includes.</li>
|
||||||
|
@@ -1254,7 +1254,7 @@ $lang = array_merge($lang, array(
|
|||||||
$keys = func_get_args();
|
$keys = func_get_args();
|
||||||
|
|
||||||
$non_static = array_shift($keys);
|
$non_static = array_shift($keys);
|
||||||
$value = array_shift($keys);
|
$value = utf8_normalize_nfc(array_shift($keys));
|
||||||
|
|
||||||
if (!$non_static)
|
if (!$non_static)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user