diff options
author | kasimi <mail@kasimi.net> | 2017-09-16 11:10:04 +0200 |
---|---|---|
committer | kasimi <mail@kasimi.net> | 2017-09-16 11:10:04 +0200 |
commit | f1f35f7f3d7deb6316d1582a81462f7eab32821d (patch) | |
tree | 086d619a5fef3f152b714276ee41097488b0a592 /phpBB/phpbb/cache | |
parent | cd14b2cdf85bd458cb94b780bdf984c485034237 (diff) | |
download | forums-f1f35f7f3d7deb6316d1582a81462f7eab32821d.tar forums-f1f35f7f3d7deb6316d1582a81462f7eab32821d.tar.gz forums-f1f35f7f3d7deb6316d1582a81462f7eab32821d.tar.bz2 forums-f1f35f7f3d7deb6316d1582a81462f7eab32821d.tar.xz forums-f1f35f7f3d7deb6316d1582a81462f7eab32821d.zip |
[ticket/15365] Fix invalidating OPcache
PHPBB3-15365
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 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 |