summaryrefslogtreecommitdiffstats
path: root/system/core/Common.php
diff options
context:
space:
mode:
authorThanasis Polychronakis <thanpolas@gmail.com>2012-05-20 17:44:21 +0200
committerThanasis Polychronakis <thanpolas@gmail.com>2012-05-31 20:39:56 +0200
commit8991cb85b9d9955270bdbbd96a08ba9141c5e11d (patch)
tree2e18094b335c93ba998c021d7663ba82935e1d5c /system/core/Common.php
parentb6e0b588522055ddffc44e63e5479309fa3b4b14 (diff)
Indended code to meet CI standards
Diffstat (limited to 'system/core/Common.php')
-rw-r--r--system/core/Common.php8
1 files changed, 6 insertions, 2 deletions
diff --git a/system/core/Common.php b/system/core/Common.php
index f468747c6..8ed18cdae 100644
--- a/system/core/Common.php
+++ b/system/core/Common.php
@@ -233,7 +233,8 @@ if ( ! function_exists('get_config'))
$file_path = APPPATH.'config/config.php';
$found = false;
- if (file_exists($file_path)) {
+ if (file_exists($file_path))
+ {
$found = true;
require($file_path);
}
@@ -242,7 +243,10 @@ if ( ! function_exists('get_config'))
if (defined(ENVIRONMENT) && file_exists($file_path = APPPATH.'config/'.ENVIRONMENT.'/config.php'))
{
require($file_path);
- } else if (!$found) {
+ }
+ else if (!$found)
+ {
+ set_status_header(503);
exit('The configuration file does not exist.');
}