diff options
author | Marc Alexander <admin@m-a-styles.de> | 2019-05-11 13:40:47 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2019-05-11 23:36:20 +0200 |
commit | 3f33d8957288ee988e6e276ec8cb2042eb921627 (patch) | |
tree | 604f892ecd5cef1f14e4f936fc19dd3b15f8721e /phpBB/phpbb | |
parent | 90f8498a4488e7f28ee7741cb9245ff232489127 (diff) | |
download | forums-3f33d8957288ee988e6e276ec8cb2042eb921627.tar forums-3f33d8957288ee988e6e276ec8cb2042eb921627.tar.gz forums-3f33d8957288ee988e6e276ec8cb2042eb921627.tar.bz2 forums-3f33d8957288ee988e6e276ec8cb2042eb921627.tar.xz forums-3f33d8957288ee988e6e276ec8cb2042eb921627.zip |
[ticket/16052] Fix issues caused by merges
PHPBB3-16052
Diffstat (limited to 'phpBB/phpbb')
-rw-r--r-- | phpBB/phpbb/session.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/phpbb/session.php b/phpBB/phpbb/session.php index 9e1548bf76..38e40ba29e 100644 --- a/phpBB/phpbb/session.php +++ b/phpBB/phpbb/session.php @@ -99,8 +99,8 @@ class session else { // current directory within the phpBB root (for example: adm) - $root_dirs = explode('/', str_replace('\\', '/', filesystem_helper::realpath($root_path))); - $page_dirs = explode('/', str_replace('\\', '/', filesystem_helper::realpath('./'))); + $root_dirs = explode('/', str_replace('\\', '/', $phpbb_filesystem->realpath($root_path))); + $page_dirs = explode('/', str_replace('\\', '/', $phpbb_filesystem->realpath('./'))); } $intersection = array_intersect_assoc($root_dirs, $page_dirs); |