aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb
diff options
context:
space:
mode:
authorOliver Schramm <oliver.schramm97@gmail.com>2017-09-28 18:57:44 +0200
committerOliver Schramm <oliver.schramm97@gmail.com>2017-09-28 18:57:44 +0200
commite71cb17b64a00a82c46b79f714beefe52ad0445d (patch)
tree93d068b2ef3ca1290b0f416f020a56f9a53ddb3a /phpBB/phpbb
parentd095e620c1b36d68206139c082881b32a5f6a6e6 (diff)
parentf1f35f7f3d7deb6316d1582a81462f7eab32821d (diff)
downloadforums-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.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