mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 22:28:51 +00:00
Merge branch 'bug/dpward/58755' into develop-olympus
This commit is contained in:
commit
23141a2c51
2 changed files with 2 additions and 1 deletions
|
@ -102,6 +102,7 @@
|
|||
<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>[Fix] Prevent wrong tar archive type detection. (Bug #12531)</li>
|
||||
<li>[Fix] Correct redirection after login to forum not in web root (Bug #58755)</li>
|
||||
<li>[Feature] Support for Microsoft's Native SQL Server Driver for PHP (Bug #57055 - Patch by Chris Pucci at Microsoft)</li>
|
||||
</ul>
|
||||
|
||||
|
|
|
@ -83,7 +83,7 @@ class session
|
|||
$query_string = trim(implode('&', $use_args));
|
||||
|
||||
// basenamed page name (for example: index.php)
|
||||
$page_name = basename($script_name);
|
||||
$page_name = (substr($script_name, -1, 1) == '/') ? '' : basename($script_name);
|
||||
$page_name = urlencode(htmlspecialchars($page_name));
|
||||
|
||||
// current directory within the phpBB root (for example: adm)
|
||||
|
|
Loading…
Add table
Reference in a new issue