Browse Source

Added code to return the entire array to Arr::dot.

Taylor Otwell 13 years ago
parent
commit
db5c61d50c
1 changed files with 5 additions and 0 deletions
  1. 5 0
      system/arr.php

+ 5 - 0
system/arr.php

@@ -37,6 +37,11 @@ class Arr {
 	 */
 	public static function dot($array, $key, $default = null)
 	{
+		if (is_null($key))
+		{
+			return $array;
+		}
+
 		foreach (explode('.', $key) as $segment)
 		{
 			if ( ! isset($array[$segment]))