summaryrefslogtreecommitdiffstats
path: root/system/core/Common.php
diff options
context:
space:
mode:
authorAndrey Andreev <narf@bofh.bg>2012-02-08 22:30:40 +0100
committerAndrey Andreev <narf@bofh.bg>2012-02-08 22:30:40 +0100
commitcebb10c7785af838251ccd929299eff95b0475fa (patch)
treedca28c522ea0b20f5187695d7eca1adb4f42e136 /system/core/Common.php
parenta8c0a7ff72b1383909f9c374d3c5e560b3f28326 (diff)
parent0209c70195384308f06a6c0fc42693c1c649cf46 (diff)
Merge upstream branch
Diffstat (limited to 'system/core/Common.php')
-rw-r--r--system/core/Common.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/system/core/Common.php b/system/core/Common.php
index 2f9c4ff43..225227d17 100644
--- a/system/core/Common.php
+++ b/system/core/Common.php
@@ -177,6 +177,7 @@ if ( ! function_exists('load_class'))
{
// Note: We use exit() rather then show_error() in order to avoid a
// self-referencing loop with the Excptions class
+ set_status_header(503);
exit('Unable to locate the specified class: '.$class.'.php');
}
@@ -243,6 +244,7 @@ if ( ! function_exists('get_config'))
// Fetch the config file
if ( ! file_exists($file_path))
{
+ set_status_header(503);
exit('The configuration file does not exist.');
}
@@ -251,6 +253,7 @@ if ( ! function_exists('get_config'))
// Does the $config array exist in the file?
if ( ! isset($config) OR ! is_array($config))
{
+ set_status_header(503);
exit('Your config file does not appear to be formatted correctly.');
}