Added missing paren from previous commit.

This commit is contained in:
Taylor Otwell 2011-06-15 13:43:09 -07:00
parent 2413b9cc63
commit cd7e1eb664
1 changed files with 1 additions and 1 deletions

View File

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