diff --git a/src/utils/Config.php b/src/utils/Config.php index ef8ba9090..dc194003d 100644 --- a/src/utils/Config.php +++ b/src/utils/Config.php @@ -168,7 +168,8 @@ class Config{ public function &get($k){ if($this->correct === false or !isset($this->config[$k])){ - return false; + $false = false; + return $false; } return $this->config[$k]; }