diff options
author | vlakoff <vlakoff@gmail.com> | 2014-04-01 01:03:48 +0200 |
---|---|---|
committer | vlakoff <vlakoff@gmail.com> | 2014-04-01 01:03:48 +0200 |
commit | 8bec33f37bd0e4542d5f963a446283c10a2b2ffe (patch) | |
tree | 3808b4cb88fbaa32d6f2c49ffeeb73d7088c1c43 /system/core/Config.php | |
parent | e803b5edb173cf91a4afd5f2ee6330e60426ffa8 (diff) |
Remove spaces around concatenations
per request
Diffstat (limited to 'system/core/Config.php')
-rw-r--r-- | system/core/Config.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/system/core/Config.php b/system/core/Config.php index ec852b133..b2689a6bb 100644 --- a/system/core/Config.php +++ b/system/core/Config.php @@ -83,9 +83,9 @@ class CI_Config { $script_dir .= '/'; } - $base_url = (is_https() ? 'https' : 'http') . '://' - . (isset($_SERVER['HTTP_HOST']) ? $_SERVER['HTTP_HOST'] : 'localhost') - . $script_dir; + $base_url = (is_https() ? 'https' : 'http').'://' + .(isset($_SERVER['HTTP_HOST']) ? $_SERVER['HTTP_HOST'] : 'localhost') + .$script_dir; $this->set_item('base_url', $base_url); } |