summaryrefslogtreecommitdiffstats
path: root/index.php
diff options
context:
space:
mode:
authorDaniel Hunsaker <danhunsaker@gmail.com>2013-03-04 10:05:20 +0100
committerDaniel Hunsaker <danhunsaker@gmail.com>2013-03-04 10:05:20 +0100
commit50dfe0175df02fe4aa243757bdf1b42fb9fc3169 (patch)
treeaecad56261ff780ffb92d75492445de5e6479cc1 /index.php
parente5d7af508680afced4c96b5a52a054c73b6c537e (diff)
Updated in accordance with feedback from @narfbg
- Removed commented lists of constants from the three reference conventions, replacing each with the URLs at which more information can be found. - Renamed a few constants to more closely reflect CodeIgniter conventions. - Modified a couple of lines which were in violation of the CI Style Guide. Signed-off-by: Daniel Hunsaker <danhunsaker@gmail.com>
Diffstat (limited to 'index.php')
-rwxr-xr-xindex.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/index.php b/index.php
index a52a021ec..c6314da1f 100755
--- a/index.php
+++ b/index.php
@@ -68,7 +68,7 @@ switch (ENVIRONMENT)
default:
header('HTTP/1.1 503 Service Unavailable.', TRUE, 503);
echo 'The application environment is not set correctly.';
- exit(1); // EXIT_* constants not yet defined; 1 is EXIT_FAILURE, a generic error.
+ exit(1); // EXIT_* constants not yet defined; 1 is EXIT_ERROR, a generic error.
}
/*