diff options
author | Oliver Schramm <oliver.schramm97@gmail.com> | 2017-09-28 18:57:44 +0200 |
---|---|---|
committer | Oliver Schramm <oliver.schramm97@gmail.com> | 2017-09-28 18:57:44 +0200 |
commit | e71cb17b64a00a82c46b79f714beefe52ad0445d (patch) | |
tree | 93d068b2ef3ca1290b0f416f020a56f9a53ddb3a /phpBB/phpbb | |
parent | d095e620c1b36d68206139c082881b32a5f6a6e6 (diff) | |
parent | f1f35f7f3d7deb6316d1582a81462f7eab32821d (diff) | |
download | forums-e71cb17b64a00a82c46b79f714beefe52ad0445d.tar forums-e71cb17b64a00a82c46b79f714beefe52ad0445d.tar.gz forums-e71cb17b64a00a82c46b79f714beefe52ad0445d.tar.bz2 forums-e71cb17b64a00a82c46b79f714beefe52ad0445d.tar.xz forums-e71cb17b64a00a82c46b79f714beefe52ad0445d.zip |
Merge pull request #4958 from kasimi/ticket/15365
[ticket/15365] Fix invalidating OPcache
Diffstat (limited to 'phpBB/phpbb')
-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 497f00c06b..e9d2ba8e04 100644 --- a/phpBB/phpbb/cache/driver/file.php +++ b/phpBB/phpbb/cache/driver/file.php @@ -576,7 +576,7 @@ class file extends \phpbb\cache\driver\base if (function_exists('opcache_invalidate')) { - @opcache_invalidate($this->cache_file); + @opcache_invalidate($file); } try |