aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/cache
diff options
context:
space:
mode:
authorkasimi <mail@kasimi.net>2017-09-16 11:10:04 +0200
committerkasimi <mail@kasimi.net>2017-09-16 11:10:04 +0200
commitf1f35f7f3d7deb6316d1582a81462f7eab32821d (patch)
tree086d619a5fef3f152b714276ee41097488b0a592 /phpBB/phpbb/cache
parentcd14b2cdf85bd458cb94b780bdf984c485034237 (diff)
downloadforums-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.php2
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