Fixed 969

This commit is contained in:
Shoghi Cervantes 2013-12-02 17:45:01 +01:00
parent 8532f53f8e
commit e9e59c33cc

View File

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