From 6750c799f070f59cf462eaa23e00f5f6419324c7 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Mon, 15 Aug 2011 00:18:56 -0500 Subject: [PATCH] converted config class to use arr::set. --- system/config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/config.php b/system/config.php index 7580a821..613afc25 100644 --- a/system/config.php +++ b/system/config.php @@ -68,7 +68,7 @@ public static function set($key, $value) throw new \Exception("Error setting configuration option. Option [$key] is not defined."); } - (is_null($key)) ? static::$items[$module][$file] = $value : static::$items[$module][$file][$key] = $value; + (is_null($key)) ? static::$items[$module][$file] = $value : Arr::set(static::$items[$module][$file], $key, $value); } /**