From b91930c592cd05131e0d4789efda568b76ea6466 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Fri, 10 Jun 2011 12:19:19 -0700 Subject: [PATCH] Fixed bug in Config::set method. --- system/config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/config.php b/system/config.php index 75664d13..844742e2 100644 --- a/system/config.php +++ b/system/config.php @@ -31,7 +31,7 @@ public static function get($key) * @param mixed $value * @return void */ - public static function set($file, $value) + public static function set($key, $value) { list($file, $key) = static::parse($key);