From a81ff96239b0538e2993b9dd164a33726ff8ab8f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Thu, 18 Jul 2013 12:52:06 +0000 Subject: [PATCH] Changed all true/false to TRUE/FALSE respectively as PHP constants are better than keywords --- index.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/index.php b/index.php index 1202b31..2f8d830 100644 --- a/index.php +++ b/index.php @@ -42,7 +42,7 @@ final class ApplicationEntryPoint { * @return void * @todo This method is old code and needs heavy rewrite and should be moved to ApplicationHelper */ - public static final function app_exit ($message = '', $code = false, $extraData = '', $silentMode = false) { + public static final function app_exit ($message = '', $code = FALSE, $extraData = '', $silentMode = FALSE) { // Is this method already called? if (isset($GLOBALS['app_die_called'])) { // Then output the text directly @@ -50,7 +50,7 @@ final class ApplicationEntryPoint { } // END - if // This method shall not be called twice - $GLOBALS['app_die_called'] = true; + $GLOBALS['app_die_called'] = TRUE; // Is a message set? if (empty($message)) { @@ -62,7 +62,7 @@ final class ApplicationEntryPoint { $configInstance = FrameworkConfiguration::getSelfInstance(); // Do we have debug installation? - if (($configInstance->getConfigEntry('product_install_mode') == 'productive') || ($silentMode === true)) { + if (($configInstance->getConfigEntry('product_install_mode') == 'productive') || ($silentMode === TRUE)) { // Abort here exit(); } // END - if @@ -159,7 +159,7 @@ final class ApplicationEntryPoint { exit(); } else { // Output message and die - exit(sprintf("[Main:] Emergency exit reached: %s", + exit(sprintf('[Main:] Emergency exit reached: %s', $message )); } @@ -206,10 +206,10 @@ final class ApplicationEntryPoint { } // END - class // Developer mode active? Comment out if no dev! -define('DEVELOPER', true); +define('DEVELOPER', TRUE); // Log all exceptions (only debug! This option can create large error logs) -//define('LOG_EXCEPTIONS', true); +//define('LOG_EXCEPTIONS', TRUE); //xdebug_start_trace(); -- 2.30.2