From f1f35f7f3d7deb6316d1582a81462f7eab32821d Mon Sep 17 00:00:00 2001 From: kasimi Date: Sat, 16 Sep 2017 11:10:04 +0200 Subject: [PATCH] [ticket/15365] Fix invalidating OPcache PHPBB3-15365 --- phpBB/phpbb/cache/driver/file.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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