From 66da57cbd56f2b6f0d0da04379c425ba3b1333db Mon Sep 17 00:00:00 2001 From: Kiall Mac Innes Date: Mon, 13 Feb 2012 16:13:15 +0000 Subject: [PATCH] Revert "Refs #4001 - ucfirst() the controller name for PSR-0" This reverts commit 4eb6180377036da0a523178dca1d134cebfde06f. --- classes/Kohana/Request.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/classes/Kohana/Request.php b/classes/Kohana/Request.php index 01f30aa70..7eb5716bd 100644 --- a/classes/Kohana/Request.php +++ b/classes/Kohana/Request.php @@ -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'])) {