diff options
author | Eric Barnes <eric@ericlbarnes.com> | 2011-04-27 04:51:32 +0200 |
---|---|---|
committer | Eric Barnes <eric@ericlbarnes.com> | 2011-04-27 04:51:32 +0200 |
commit | 32dbac2695490fb751fc8da645bba945bc8da718 (patch) | |
tree | 0e6d9b1f4bf1172075f05105bc4484bd5e0cebbf /system/core/Config.php | |
parent | d97e12cb0e9c8b5e78e67780d1a9227da35e0da4 (diff) |
Reverting last change. Don't know what I was thinking. :(
Diffstat (limited to 'system/core/Config.php')
-rw-r--r-- | system/core/Config.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/core/Config.php b/system/core/Config.php index 55c623b3c..fa71f4d3d 100644 --- a/system/core/Config.php +++ b/system/core/Config.php @@ -55,7 +55,7 @@ class CI_Config { { $base_url = isset($_SERVER['HTTPS']) && strtolower($_SERVER['HTTPS']) !== 'off' ? 'https' : 'http'; $base_url .= '://'. $_SERVER['HTTP_HOST']; - $base_url .= str_replace(basename($_SERVER['SCRIPT_NAME']), '', $_SERVER['SCRIPT_NAME']).'/'; + $base_url .= str_replace(basename($_SERVER['SCRIPT_NAME']), '', $_SERVER['SCRIPT_NAME']); } else |