mirror of
https://github.com/friendica/friendica
synced 2025-04-28 09:04:24 +02:00
Bugfixing PConfig
This commit is contained in:
parent
8b70ae6d46
commit
f3da5b3a2f
4 changed files with 10 additions and 8 deletions
|
@ -121,7 +121,7 @@ class ConfigCache implements IConfigCache, IPConfigCache
|
|||
|
||||
if (isset($this->config[$uid][$cat][$key])) {
|
||||
$return = $this->config[$uid][$cat][$key];
|
||||
} elseif ($key == null && isset($this->config[$uid][$cat])) {
|
||||
} elseif ($key === null && isset($this->config[$uid][$cat])) {
|
||||
$return = $this->config[$uid][$cat];
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue