fix bug in routing that prevented comma delimited routes.
This commit is contained in:
parent
4c2209e331
commit
6e916ea69d
|
@ -154,7 +154,7 @@ protected function provides($callback)
|
|||
return (is_string($provides = $callback['provides'])) ? explode('|', $provides) : $provides;
|
||||
}
|
||||
|
||||
return array();
|
||||
return array('html');
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue