diff --git a/core/config.class.php b/core/config.class.php index 16fda4a9..97106266 100644 --- a/core/config.class.php +++ b/core/config.class.php @@ -106,7 +106,7 @@ class Config { return ($this->get($name, $default) == 'Y' || $this->get($name, $default) == '1'); } - public function get($name, $default=null) { + private function get($name, $default=null) { if(isset($this->values[$name])) { return $this->values[$name]; }