Browse Source

converted config class to use arr::set.

Taylor Otwell 13 years ago
parent
commit
6750c799f0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      system/config.php

+ 1 - 1
system/config.php

@@ -68,7 +68,7 @@ class Config {
 			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);
 	}
 
 	/**