fix bug in routing that prevented comma delimited routes.

This commit is contained in:
Taylor Otwell 2011-10-27 08:03:08 -05:00
parent 4c2209e331
commit 6e916ea69d
1 changed files with 1 additions and 1 deletions

View File

@ -154,7 +154,7 @@ protected function provides($callback)
return (is_string($provides = $callback['provides'])) ? explode('|', $provides) : $provides;
}
return array();
return array('html');
}
/**