summaryrefslogtreecommitdiffstats
path: root/system/core/Config.php
diff options
context:
space:
mode:
authorPhil Sturgeon <email@philsturgeon.co.uk>2010-12-27 18:41:02 +0100
committerPhil Sturgeon <email@philsturgeon.co.uk>2010-12-27 18:41:02 +0100
commitde3dbc36dab42d86c66d76efd6fdb1d1dce71ce8 (patch)
tree622cc7ac80820ffc059c03a2f3572d12e3ab60ac /system/core/Config.php
parent6c597f8d4b1b1bc12ccb4ad298053f03e6def36c (diff)
Languages can now be placed in packages folders, and added ->load->get_package_paths().
Diffstat (limited to 'system/core/Config.php')
-rw-r--r--system/core/Config.php1
1 files changed, 0 insertions, 1 deletions
diff --git a/system/core/Config.php b/system/core/Config.php
index 081f1d899..8ecfba73a 100644
--- a/system/core/Config.php
+++ b/system/core/Config.php
@@ -51,7 +51,6 @@ class CI_Config {
// Set the base_url automatically if none was provided
if ($this->config['base_url'] == '')
{
- // Base URL (keeps this crazy sh*t out of the config.php
if(isset($_SERVER['HTTP_HOST']))
{
$base_url = isset($_SERVER['HTTPS']) && strtolower($_SERVER['HTTPS']) !== 'off' ? 'https' : 'http';