summaryrefslogtreecommitdiffstats
path: root/system/libraries/Config.php
diff options
context:
space:
mode:
authoradmin <devnull@localhost>2006-10-21 21:39:00 +0200
committeradmin <devnull@localhost>2006-10-21 21:39:00 +0200
commitbd6bee75dd26ade1c8d9cfd104bb913065797c59 (patch)
treed6f4ad19ef131b950e2cab3807c3479ad328cc0c /system/libraries/Config.php
parent23db0ddcd518b8a6ab8b7688a3eab756a73463f0 (diff)
Diffstat (limited to 'system/libraries/Config.php')
-rw-r--r--system/libraries/Config.php14
1 files changed, 2 insertions, 12 deletions
diff --git a/system/libraries/Config.php b/system/libraries/Config.php
index 82836b1f3..ef6d46a25 100644
--- a/system/libraries/Config.php
+++ b/system/libraries/Config.php
@@ -46,9 +46,7 @@ class CI_Config {
{
$this->config = get_config();
log_message('debug', "Config Class Initialized");
- }
- // END CI_Config()
-
+ }
// --------------------------------------------------------------------
@@ -110,7 +108,6 @@ class CI_Config {
log_message('debug', 'Config file loaded: config/'.$file.EXT);
return TRUE;
}
- // END load()
// --------------------------------------------------------------------
@@ -152,7 +149,6 @@ class CI_Config {
return $pref;
}
- // END item()
// --------------------------------------------------------------------
@@ -186,9 +182,6 @@ class CI_Config {
return $pref;
}
- // END item()
-
-
// --------------------------------------------------------------------
@@ -216,8 +209,7 @@ class CI_Config {
return $this->slash_item('base_url').$this->slash_item('index_page').preg_replace("|^/*(.+?)/*$|", "\\1", $uri).$suffix;
}
}
- // END site_url()
-
+
// --------------------------------------------------------------------
/**
@@ -231,7 +223,6 @@ class CI_Config {
$x = explode("/", preg_replace("|/*(.+?)/*$|", "\\1", BASEPATH));
return $this->slash_item('base_url').end($x).'/';
}
- // END system_url()
// --------------------------------------------------------------------
@@ -247,7 +238,6 @@ class CI_Config {
{
$this->config[$item] = $value;
}
- // END set_item()
}