diff options
| author | Igor Wiedler <igor@wiedler.ch> | 2010-03-05 20:54:16 +0100 |
|---|---|---|
| committer | Igor Wiedler <igor@wiedler.ch> | 2010-03-06 01:39:44 +0100 |
| commit | 9d005973b0b31077a81243d7573734bb63af2a27 (patch) | |
| tree | 4226f836d6060db7817195df79808358b0195edd | |
| parent | ac329275662f737f03f485107cb69412739c1afa (diff) | |
| download | forums-9d005973b0b31077a81243d7573734bb63af2a27.tar forums-9d005973b0b31077a81243d7573734bb63af2a27.tar.gz forums-9d005973b0b31077a81243d7573734bb63af2a27.tar.bz2 forums-9d005973b0b31077a81243d7573734bb63af2a27.tar.xz forums-9d005973b0b31077a81243d7573734bb63af2a27.zip | |
[bug/51555] proposed fix for bug #51555
| -rw-r--r-- | phpBB/docs/CHANGELOG.html | 1 | ||||
| -rw-r--r-- | phpBB/includes/functions.php | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/docs/CHANGELOG.html b/phpBB/docs/CHANGELOG.html index 3042027e83..d31e094f93 100644 --- a/phpBB/docs/CHANGELOG.html +++ b/phpBB/docs/CHANGELOG.html @@ -99,6 +99,7 @@ <li>[Fix] Add terminating semicolons to JavaScript code. (Bug #58085 - Patch by nn-)</li> <li>[Fix] Minor language fixes. (Bug #54855)</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> </ul> diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index 38f910974a..917433a970 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -114,7 +114,7 @@ function request_var($var_name, $default, $multibyte = false, $cookie = false) { $_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); } } |
