diff options
author | David King <imkingdavid@gmail.com> | 2012-11-02 16:40:12 -0400 |
---|---|---|
committer | Igor Wiedler <igor@wiedler.ch> | 2012-11-10 12:02:55 +0100 |
commit | c16bb2b2c62f3fa68716b40745cba437cebe5433 (patch) | |
tree | 803a0370929fa551e94f9dff45ee63535639a193 /phpBB/includes/extension/manager.php | |
parent | af3f07d8c9d79b305f34eb19aa100786d4a3faf8 (diff) | |
download | forums-c16bb2b2c62f3fa68716b40745cba437cebe5433.tar forums-c16bb2b2c62f3fa68716b40745cba437cebe5433.tar.gz forums-c16bb2b2c62f3fa68716b40745cba437cebe5433.tar.bz2 forums-c16bb2b2c62f3fa68716b40745cba437cebe5433.tar.xz forums-c16bb2b2c62f3fa68716b40745cba437cebe5433.zip |
[feature/compiled-dic] Purge cache to make ext services available right away
PHPBB3-11152
Diffstat (limited to 'phpBB/includes/extension/manager.php')
-rw-r--r-- | phpBB/includes/extension/manager.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/phpBB/includes/extension/manager.php b/phpBB/includes/extension/manager.php index cfa6a0e000..bfd4edde93 100644 --- a/phpBB/includes/extension/manager.php +++ b/phpBB/includes/extension/manager.php @@ -195,7 +195,7 @@ class phpbb_extension_manager if ($this->cache) { - $this->cache->destroy($this->cache_name); + $this->cache->purge(); } return !$active; @@ -252,7 +252,7 @@ class phpbb_extension_manager if ($this->cache) { - $this->cache->destroy($this->cache_name); + $this->cache->purge(); } return true; @@ -272,7 +272,7 @@ class phpbb_extension_manager if ($this->cache) { - $this->cache->destroy($this->cache_name); + $this->cache->purge(); } return false; @@ -335,7 +335,7 @@ class phpbb_extension_manager if ($this->cache) { - $this->cache->destroy($this->cache_name); + $this->cache->purge(); } return true; @@ -349,7 +349,7 @@ class phpbb_extension_manager if ($this->cache) { - $this->cache->destroy($this->cache_name); + $this->cache->purge(); } return false; |