diff options
author | Florian Pritz <bluewind@server-speed.net> | 2011-04-12 15:40:54 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@server-speed.net> | 2011-04-12 15:40:54 +0200 |
commit | 4655a707ced755069f7661c733b6246b33e8b92a (patch) | |
tree | ffc74865201c348c09b6a45067f8af05b1654cac | |
parent | 5452b09043c300c7e05407b2f29c5aaefbd90939 (diff) |
reapply changes made to core files
Signed-off-by: Florian Pritz <bluewind@server-speed.net>
-rwxr-xr-x | index.php | 4 | ||||
-rwxr-xr-x | system/core/URI.php | 4 |
2 files changed, 4 insertions, 4 deletions
@@ -33,7 +33,7 @@ if (defined('ENVIRONMENT')) switch (ENVIRONMENT) { case 'development': - error_reporting(E_ALL); + error_reporting(E_ALL ^ E_NOTICE); break; case 'testing': @@ -201,4 +201,4 @@ if (defined('ENVIRONMENT')) require_once BASEPATH.'core/CodeIgniter'.EXT; /* End of file index.php */ -/* Location: ./index.php */
\ No newline at end of file +/* Location: ./index.php */ diff --git a/system/core/URI.php b/system/core/URI.php index 80dc62e58..b34260836 100755 --- a/system/core/URI.php +++ b/system/core/URI.php @@ -193,7 +193,7 @@ class CI_URI { $uri = parse_url($uri, PHP_URL_PATH); // Do some final cleaning of the URI and return it - return str_replace(array('//', '../'), '/', trim($uri, '/')); + return str_replace(array('//', '../'), '/', ltrim($uri, '/')); } // -------------------------------------------------------------------- @@ -620,4 +620,4 @@ class CI_URI { // END URI Class /* End of file URI.php */ -/* Location: ./system/core/URI.php */
\ No newline at end of file +/* Location: ./system/core/URI.php */ |