Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/Klein/Request.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @author Chris O'Hara <cohara87@gmail.com>
* @author Trevor Suarez (Rican7) (contributor and v2 refactorer)
* @copyright (c) Chris O'Hara
* @link https://github.com/chriso/klein.php
* @link https://github.com/klein/klein.php
* @license MIT
*/

Expand Down Expand Up @@ -400,7 +400,7 @@ public function userAgent()
*/
public function uri()
{
return $this->server->get('REQUEST_URI', '/');
return urldecode($this->server->get('REQUEST_URI', '/'));
}

/**
Expand Down