diff options
author | javiexin <javiexin@gmail.com> | 2017-02-15 23:56:52 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-15 23:56:52 +0100 |
commit | 7f69580df3b6125941fc39d63f8498488f32231a (patch) | |
tree | f7c3816515cdbe98aee078f8ece97d79f77bd017 /phpBB/phpbb/cache | |
parent | 7646280d518a4f637ec267fadb5e563f5b149512 (diff) | |
parent | b567c6e2414d069ba54f7a924c952069aa115237 (diff) | |
download | forums-7f69580df3b6125941fc39d63f8498488f32231a.tar forums-7f69580df3b6125941fc39d63f8498488f32231a.tar.gz forums-7f69580df3b6125941fc39d63f8498488f32231a.tar.bz2 forums-7f69580df3b6125941fc39d63f8498488f32231a.tar.xz forums-7f69580df3b6125941fc39d63f8498488f32231a.zip |
Merge branch '3.1.x' into ticket/15011
Diffstat (limited to 'phpBB/phpbb/cache')
-rw-r--r-- | phpBB/phpbb/cache/driver/file.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/cache/driver/file.php b/phpBB/phpbb/cache/driver/file.php index fae4614039..1e9ee960dc 100644 --- a/phpBB/phpbb/cache/driver/file.php +++ b/phpBB/phpbb/cache/driver/file.php @@ -601,6 +601,6 @@ class file extends \phpbb\cache\driver\base */ protected function clean_varname($varname) { - return str_replace('/', '-', $varname); + return str_replace(array('/', '\\'), '-', $varname); } } |