From 7a4016b6232f7d1630c163d3feb7e5456e30ba95 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Mon, 8 Aug 2011 15:46:37 -0500 Subject: [PATCH] Change Config::load to private. --- system/config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/config.php b/system/config.php index e1aa24e4..6118662f 100644 --- a/system/config.php +++ b/system/config.php @@ -100,7 +100,7 @@ class Config { * @param string $module * @return bool */ - public static function load($module, $file) + private static function load($module, $file) { if (isset(static::$items[$module]) and array_key_exists($file, static::$items[$module])) return true;