mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-27 21:58:52 +00:00
[feature/compiled-dic] Purge cache to make ext services available right away
PHPBB3-11152
This commit is contained in:
parent
af3f07d8c9
commit
c16bb2b2c6
1 changed files with 5 additions and 5 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue