From 6485bd22f391881c9316d0065d0ef8b0de944e92 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Fri, 1 May 2009 20:08:29 +0000 Subject: [PATCH] Generic index.php updated from hub project --- .gitattributes | 2 +- .../de/image/{code_captcha.xml => code_captcha.img} | 0 index.php | 11 ++++++----- 3 files changed, 7 insertions(+), 6 deletions(-) rename application/admin/templates/images/de/image/{code_captcha.xml => code_captcha.img} (100%) diff --git a/.gitattributes b/.gitattributes index 6174d47..ac800f0 100644 --- a/.gitattributes +++ b/.gitattributes @@ -56,7 +56,7 @@ application/admin/templates/images/_cache/.htaccess -text application/admin/templates/images/de/.htaccess -text application/admin/templates/images/de/image/.htaccess -text application/admin/templates/images/de/image/base_code.xml -text -application/admin/templates/images/de/image/code_captcha.xml -text +application/admin/templates/images/de/image/code_captcha.img -text /clear-cache.sh -text db/.htaccess -text db/company/.htaccess -text diff --git a/application/admin/templates/images/de/image/code_captcha.xml b/application/admin/templates/images/de/image/code_captcha.img similarity index 100% rename from application/admin/templates/images/de/image/code_captcha.xml rename to application/admin/templates/images/de/image/code_captcha.img diff --git a/index.php b/index.php index 3945af9..0050046 100644 --- a/index.php +++ b/index.php @@ -60,7 +60,7 @@ final class ApplicationEntryPoint { * @param $silentMode Wether not silent mode is turned on * @return void */ - public static function app_die ($message = "", $code = false, $extraData = "", $silentMode = false) { + public static function app_die ($message = '', $code = false, $extraData = '', $silentMode = false) { // Is this method already called? if (defined('EMERGENCY_EXIT_CALLED')) { // Then output the text directly @@ -73,14 +73,14 @@ final class ApplicationEntryPoint { // Is a message set? if (empty($message)) { // No message provided - $message = "No message provided!"; + $message = 'No message provided!'; } // END - if // Get config instance $configInstance = FrameworkConfiguration::getInstance(); // Do we have debug installation? - if (($configInstance->readConfig('product_install_mode') == "productive") || ($silentMode === true)) { + if (($configInstance->readConfig('product_install_mode') == 'productive') || ($silentMode === true)) { // Abort here die(); } // END - if @@ -106,7 +106,7 @@ final class ApplicationEntryPoint { // Get and prepare backtrace for output $backtraceArray = debug_backtrace(); - $backtrace = ""; + $backtrace = ''; foreach ($backtraceArray as $key => $trace) { if (!isset($trace['file'])) $trace['file'] = __FILE__; if (!isset($trace['line'])) $trace['line'] = __LINE__; @@ -161,7 +161,8 @@ final class ApplicationEntryPoint { } /** - * Determines the correct absolute path for all include + * Determines the correct absolute path for all includes only once per run. + * Other calls of this method are being "cached". * * @return $basePath Base path (core) for all includes */ -- 2.39.2