Bugfixing PConfig

This commit is contained in:
Philipp Holzer 2019-02-03 23:22:05 +01:00
parent 8b70ae6d46
commit f3da5b3a2f
No known key found for this signature in database
GPG key ID: 517BE60E2CE5C8A5
4 changed files with 10 additions and 8 deletions

View file

@ -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];
}