Browse Source

Adjusted signature for dynamic route URL creation.

Taylor Otwell 13 years ago
parent
commit
553f377ed0
1 changed files with 2 additions and 0 deletions
  1. 2 0
      system/url.php

+ 2 - 0
system/url.php

@@ -147,6 +147,7 @@ class URL {
 		// ----------------------------------------------------
 		if (strpos($method, 'to_secure_') === 0)
 		{
+			$parameters = (isset($parameters[0])) ? $parameters[0] : array();
 			return static::to_route(substr($method, 10), $parameters, true);
 		}
 
@@ -155,6 +156,7 @@ class URL {
 		// ----------------------------------------------------
 		if (strpos($method, 'to_') === 0)
 		{
+			$parameters = (isset($parameters[0])) ? $parameters[0] : array();
 			return static::to_route(substr($method, 3), $parameters);
 		}