summaryrefslogtreecommitdiffstats
path: root/system/core/Config.php
diff options
context:
space:
mode:
authorAndrey Andreev <narf@devilix.net>2014-10-10 14:40:56 +0200
committerAndrey Andreev <narf@devilix.net>2014-10-10 14:40:56 +0200
commitf35ae5eb7fc81b1c6a903591c6ff56103e6e247f (patch)
treefa5e4fcca857428a996e1c60e5ef9e300b5f18e0 /system/core/Config.php
parent1c77aabf1aa0e860a3dc739d702dc8ff8dbdc907 (diff)
Fix #3270
Diffstat (limited to 'system/core/Config.php')
-rw-r--r--system/core/Config.php7
1 files changed, 2 insertions, 5 deletions
diff --git a/system/core/Config.php b/system/core/Config.php
index 18380a0db..ee738d752 100644
--- a/system/core/Config.php
+++ b/system/core/Config.php
@@ -78,11 +78,8 @@ class CI_Config {
{
if (isset($_SERVER['HTTP_HOST']))
{
- $base_url = (is_https() ? 'https' : 'http').'://'.$_SERVER['HTTP_HOST'].'/';
- if ( ! empty($_SERVER['DOCUMENT_ROOT']))
- {
- $base_url .= ltrim(str_replace('\\', '/', substr(FCPATH, strlen($_SERVER['DOCUMENT_ROOT']))), '/\\');
- }
+ $base_url = (is_https() ? 'https' : 'http').'://'.$_SERVER['HTTP_HOST']
+ .substr($_SERVER['SCRIPT_NAME'], 0, strpos($_SERVER['SCRIPT_NAME'], basename($_SERVER['SCRIPT_FILENAME'])));
}
else
{