Browse Source

Fix call to Loader::everything.

Taylor Otwell 13 years ago
parent
commit
bc7df55f92
1 changed files with 1 additions and 1 deletions
  1. 1 1
      system/url.php

+ 1 - 1
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));