mirror of
https://github.com/phpbb/phpbb.git
synced 2025-02-24 20:13:22 +01:00
[feature/compiled-dic] Purge cache to make ext services available right away
PHPBB3-11152
This commit is contained in:
parent
af3f07d8c9
commit
c16bb2b2c6
@ -195,7 +195,7 @@ class phpbb_extension_manager
|
|||||||
|
|
||||||
if ($this->cache)
|
if ($this->cache)
|
||||||
{
|
{
|
||||||
$this->cache->destroy($this->cache_name);
|
$this->cache->purge();
|
||||||
}
|
}
|
||||||
|
|
||||||
return !$active;
|
return !$active;
|
||||||
@ -252,7 +252,7 @@ class phpbb_extension_manager
|
|||||||
|
|
||||||
if ($this->cache)
|
if ($this->cache)
|
||||||
{
|
{
|
||||||
$this->cache->destroy($this->cache_name);
|
$this->cache->purge();
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
@ -272,7 +272,7 @@ class phpbb_extension_manager
|
|||||||
|
|
||||||
if ($this->cache)
|
if ($this->cache)
|
||||||
{
|
{
|
||||||
$this->cache->destroy($this->cache_name);
|
$this->cache->purge();
|
||||||
}
|
}
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
@ -335,7 +335,7 @@ class phpbb_extension_manager
|
|||||||
|
|
||||||
if ($this->cache)
|
if ($this->cache)
|
||||||
{
|
{
|
||||||
$this->cache->destroy($this->cache_name);
|
$this->cache->purge();
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
@ -349,7 +349,7 @@ class phpbb_extension_manager
|
|||||||
|
|
||||||
if ($this->cache)
|
if ($this->cache)
|
||||||
{
|
{
|
||||||
$this->cache->destroy($this->cache_name);
|
$this->cache->purge();
|
||||||
}
|
}
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user