mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-27 21:58:52 +00:00
Merge branch 'bug/evil3/51555' into develop-olympus
This commit is contained in:
commit
5d1d32a65b
2 changed files with 2 additions and 1 deletions
|
@ -100,6 +100,7 @@
|
||||||
<li>[Fix] Add terminating semicolons to JavaScript code. (Bug #58085 - Patch by nn-)</li>
|
<li>[Fix] Add terminating semicolons to JavaScript code. (Bug #58085 - Patch by nn-)</li>
|
||||||
<li>[Fix] Minor language fixes. (Bug #54855)</li>
|
<li>[Fix] Minor language fixes. (Bug #54855)</li>
|
||||||
<li>[Fix] Parsing urls in signatures properly uses config settings. (Bug #57105)</li>
|
<li>[Fix] Parsing urls in signatures properly uses config settings. (Bug #57105)</li>
|
||||||
|
<li>[Fix] Allow multibyte keys in request_var(). (Bug #51555)</li>
|
||||||
<li>[Feature] Support for Microsoft's Native SQL Server Driver for PHP (Bug #57055 - Patch by Chris Pucci at Microsoft)</li>
|
<li>[Feature] Support for Microsoft's Native SQL Server Driver for PHP (Bug #57055 - Patch by Chris Pucci at Microsoft)</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
|
|
|
@ -114,7 +114,7 @@ function request_var($var_name, $default, $multibyte = false, $cookie = false)
|
||||||
{
|
{
|
||||||
$_v = null;
|
$_v = null;
|
||||||
}
|
}
|
||||||
set_var($_k, $_k, $sub_key_type);
|
set_var($_k, $_k, $sub_key_type, $multibyte);
|
||||||
set_var($var[$k][$_k], $_v, $sub_type, $multibyte);
|
set_var($var[$k][$_k], $_v, $sub_type, $multibyte);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue