Edit to meet CI coding standards
diff --git a/system/core/Common.php b/system/core/Common.php
index 8ed18cd..159cc0d 100644
--- a/system/core/Common.php
+++ b/system/core/Common.php
@@ -232,10 +232,10 @@
}
$file_path = APPPATH.'config/config.php';
- $found = false;
+ $found = FALSE;
if (file_exists($file_path))
{
- $found = true;
+ $found = TRUE;
require($file_path);
}
@@ -244,7 +244,7 @@
{
require($file_path);
}
- else if (!$found)
+ elseif ( ! $found)
{
set_status_header(503);
exit('The configuration file does not exist.');