From bc7df55f921dc225368ac65b7af2d7a80aa598a6 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Mon, 1 Aug 2011 15:39:58 -0500 Subject: [PATCH] Fix call to Loader::everything. --- system/url.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/url.php b/system/url.php index df1b47fd..20a3c874 100644 --- a/system/url.php +++ b/system/url.php @@ -71,7 +71,7 @@ class 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));