Browse Source

removing unused variable, fixes #2227

Ceeram 14 years ago
parent
commit
7224de962e
1 changed files with 2 additions and 5 deletions
  1. 2 5
      lib/Cake/Routing/Router.php

+ 2 - 5
lib/Cake/Routing/Router.php

@@ -820,7 +820,7 @@ class Router {
  * @see Router::url()
  */
 	protected static function _handleNoRoute($url) {
-		$named = $args = $query = array();
+		$named = $args = array();
 		$skip = array_merge(
 			array('bare', 'action', 'controller', 'plugin', 'prefix'),
 			self::$_prefixes
@@ -847,7 +847,7 @@ class Router {
 			}
 		}
 
-		if (empty($named) && empty($args) && empty($query) && (!isset($url['action']) || $url['action'] === 'index')) {
+		if (empty($named) && empty($args) && (!isset($url['action']) || $url['action'] === 'index')) {
 			$url['action'] = null;
 		}
 
@@ -881,9 +881,6 @@ class Router {
 				}
 			}
 		}
-		if (!empty($query)) {
-			$output .= Router::queryString($query);
-		}
 		return $output;
 	}