diff options
author | Taufan Aditya <toopay@taufanaditya.com> | 2012-03-10 23:43:45 +0100 |
---|---|---|
committer | Taufan Aditya <toopay@taufanaditya.com> | 2012-03-10 23:43:45 +0100 |
commit | 8749bc7e836c196dfef37d3b7b5a67736a15092c (patch) | |
tree | eb647bc246487f444ea1ffd4e24317ab0200bf30 /system/core | |
parent | e40c763bf969acbaa7c4c61be50f01e870062080 (diff) |
Fix incomplete and skipped test
Diffstat (limited to 'system/core')
-rwxr-xr-x | 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 68417435d..5424e5eb1 100755 --- a/system/core/Config.php +++ b/system/core/Config.php @@ -76,7 +76,7 @@ class CI_Config { log_message('debug', 'Config Class Initialized'); // Set the base_url automatically if none was provided - if ($this->config['base_url'] == '') + if (empty($this->config['base_url'])) { if (isset($_SERVER['HTTP_HOST'])) { |