diff --git a/cake/libs/cake_request.php b/cake/libs/cake_request.php index d49900365..4e6ba423d 100644 --- a/cake/libs/cake_request.php +++ b/cake/libs/cake_request.php @@ -193,7 +193,7 @@ class CakeRequest implements ArrayAccess { * * @return string URI The CakePHP request path that is being accessed. */ - protected function _uri() { + protected function _url() { $pathInfo = env('PATH_INFO'); if (!empty($pathInfo)) { return $pathInfo; @@ -220,16 +220,6 @@ class CakeRequest implements ArrayAccess { return $uri; } -/** - * Returns and sets the $_GET[url] derived from the REQUEST_URI - * - * @return string URL - */ - protected function _url() { - $url = $this->_uri(); - return $url; - } - /** * Returns a base URL and sets the proper webroot *