Skip to content

Commit

Permalink
Revert "Refs #4001 - ucfirst() the controller name for PSR-0"
Browse files Browse the repository at this point in the history
This reverts commit 4eb6180.
  • Loading branch information
kiall committed Feb 13, 2012
1 parent 4eb6180 commit 66da57c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions classes/Kohana/Request.php
Expand Up @@ -705,8 +705,8 @@ public function __construct($uri, HTTP_Cache $cache = NULL, $injected_routes = a
$this->_directory = $params['directory'];
}

// Store the controller - Ucfirst it for PSR-0
$this->_controller = ucfirst(strtolower($params['controller']));
// Store the controller
$this->_controller = $params['controller'];

if (isset($params['action']))
{
Expand Down

0 comments on commit 66da57c

Please sign in to comment.