summaryrefslogtreecommitdiffstats
path: root/system
diff options
context:
space:
mode:
authorEric Roberts <eric@cryode.com>2012-07-04 09:13:56 +0200
committerEric Roberts <eric@cryode.com>2012-07-04 09:13:56 +0200
commitaa141a5e20318608d42e3cda7ebcc0d69fa9b9b8 (patch)
tree978c40ecb0168c7180c7397b5fbed4f0c2435ab3 /system
parentd6ab7a297d26ab148d819ae7ca95c0e604abf188 (diff)
Fix some whitespace, removed unnecessary string concatenation.
Diffstat (limited to 'system')
-rw-r--r--system/core/Config.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/system/core/Config.php b/system/core/Config.php
index b21d7a588..2f6a9e085 100644
--- a/system/core/Config.php
+++ b/system/core/Config.php
@@ -43,7 +43,7 @@ class CI_Config {
*
* @var array
*/
- public $config = array();
+ public $config = array();
/**
* List of all loaded config files
@@ -172,7 +172,7 @@ class CI_Config {
{
return FALSE;
}
- show_error('The configuration file '.$file.'.php'.' does not exist.');
+ show_error('The configuration file '.$file.'.php does not exist.');
}
return TRUE;
@@ -271,7 +271,7 @@ class CI_Config {
*/
public function base_url($uri = '')
{
- return $this->slash_item('base_url').ltrim($this->_uri_string($uri),'/');
+ return $this->slash_item('base_url').ltrim($this->_uri_string($uri), '/');
}
// -------------------------------------------------------------