Browse Source

Fix bug in Arr::set that did not correctly create new array levels.

Taylor Otwell 13 years ago
parent
commit
b2991dd6ba
1 changed files with 8 additions and 8 deletions
  1. 8 8
      system/arr.php

+ 8 - 8
system/arr.php

@@ -46,21 +46,21 @@ class Arr {
 	 */
 	public static function set(&$array, $key, $value)
 	{
-		$reference =& $array;
+		$keys = explode('.', $key);
 
-		foreach (explode('.', $key) as $segment)
+		while (count($keys) > 1)
 		{
-			if ( ! isset($reference[$segment]))
+			$key = array_shift($keys);
+
+			if ( ! isset($array[$key]))
 			{
-				$reference[$segment] = $value;
-				
-				return;		
+				$array[$key] = array();
 			}
 
-			$reference =& $reference[$segment];
+			$array =& $array[$key];
 		}
 
-		$reference = $value;
+		$array[array_shift($keys)] = $value;
 	}
 
 }