Fix call to Loader::everything.

This commit is contained in:
Taylor Otwell 2011-08-01 15:39:58 -05:00
parent ae69149262
commit bc7df55f92
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ public static function to_asset($url)
*/
public static function to_route($name, $parameters = array(), $https = false)
{
if ( ! is_null($route = Routing\Finder::find($name, Routing\Loader::everything())))
if ( ! is_null($route = Routing\Finder::find($name, Routing\Loader::all())))
{
$uris = explode(', ', key($route));