Merge pull request #4216 from owncloud/clean_php55_opcache

Also clean PHP 5.5 opcache
remotes/origin/stable6
Thomas Müller 13 years ago
commit 954b5d9019
  1. 4
      lib/util.php

@ -871,6 +871,10 @@ class OC_Util {
if (function_exists('xcache_clear_cache')) {
xcache_clear_cache(XC_TYPE_VAR, 0);
}
// Opcache (PHP >= 5.5)
if (function_exists('opcache_reset')) {
opcache_reset();
}
}
/**

Loading…
Cancel
Save