mirror of
https://github.com/phpbb/phpbb.git
synced 2025-01-17 22:28:46 +01:00
[ticket/10614] Check if cache exists before destroying it
PHPBB3-10614
This commit is contained in:
parent
68e4c667fa
commit
78de29b7ce
@ -167,7 +167,10 @@ class phpbb_extension_manager
|
||||
$this->db->sql_query($sql);
|
||||
}
|
||||
|
||||
$this->cache->destroy($this->cache_name);
|
||||
if ($this->cache)
|
||||
{
|
||||
$this->cache->destroy($this->cache_name);
|
||||
}
|
||||
|
||||
return !$active;
|
||||
}
|
||||
@ -221,7 +224,10 @@ class phpbb_extension_manager
|
||||
WHERE ext_name = '" . $this->db->sql_escape($name) . "'";
|
||||
$this->db->sql_query($sql);
|
||||
|
||||
$this->cache->destroy($this->cache_name);
|
||||
if ($this->cache)
|
||||
{
|
||||
$this->cache->destroy($this->cache_name);
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
@ -238,7 +244,10 @@ class phpbb_extension_manager
|
||||
WHERE ext_name = '" . $this->db->sql_escape($name) . "'";
|
||||
$this->db->sql_query($sql);
|
||||
|
||||
$this->cache->destroy($this->cache_name);
|
||||
if ($this->cache)
|
||||
{
|
||||
$this->cache->destroy($this->cache_name);
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
@ -298,7 +307,10 @@ class phpbb_extension_manager
|
||||
WHERE ext_name = '" . $this->db->sql_escape($name) . "'";
|
||||
$this->db->sql_query($sql);
|
||||
|
||||
$this->cache->destroy($this->cache_name);
|
||||
if ($this->cache)
|
||||
{
|
||||
$this->cache->destroy($this->cache_name);
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
@ -309,7 +321,10 @@ class phpbb_extension_manager
|
||||
WHERE ext_name = '" . $this->db->sql_escape($name) . "'";
|
||||
$this->db->sql_query($sql);
|
||||
|
||||
$this->cache->destroy($this->cache_name);
|
||||
if ($this->cache)
|
||||
{
|
||||
$this->cache->destroy($this->cache_name);
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user