1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-07 17:27:16 +02:00

Merge branch '3.1.x' into 3.2.x

* 3.1.x:
  [ticket/13681] Invalidate and reset opcache where necessary
This commit is contained in:
Tristan Darricau
2016-02-18 22:00:10 +01:00
3 changed files with 20 additions and 0 deletions

View File

@@ -63,6 +63,11 @@ abstract class base implements \phpbb\cache\driver\driver_interface
unset($this->sql_rowset);
unset($this->sql_row_pointer);
if (function_exists('opcache_reset'))
{
@opcache_reset();
}
$this->vars = array();
$this->sql_rowset = array();
$this->sql_row_pointer = array();