From 40eb4699b87266a6b173a454b2f68967da45f27d Mon Sep 17 00:00:00 2001 From: shish Date: Thu, 12 Jul 2007 07:50:08 +0000 Subject: [PATCH] privatise this git-svn-id: file:///home/shish/svn/shimmie2/trunk@264 7f39781d-f577-437e-ae19-be835c7a54ca --- core/config.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]; }