Browse Source

Fixed bug in route finder.

Taylor Otwell 14 years ago
parent
commit
2413b9cc63
1 changed files with 1 additions and 1 deletions
  1. 1 1
      system/route/finder.php

+ 1 - 1
system/route/finder.php

@@ -53,7 +53,7 @@ class Finder {
 		{
 			$route = $recursiveIterator->getSubIterator();
 
-			if ($route['name'] == $name)
+			if (isset($route['name'] and $route['name'] == $name)
 			{
 				return static::$names[$name] = array($arrayIterator->key() => iterator_to_array($route));
 			}