X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=install.php;h=8b1e4b1b64b3950fef479188df7757f5b0f7d361;hb=154876ca8a78bed3a06f038e3e4687b9c11a3336;hp=6b6c5d6957477d85f83abcb1f00b32b828f82bbc;hpb=89b94a81164ab7d31a89b04e4cc1185e3f6bbb0e;p=mailer.git diff --git a/install.php b/install.php index 6b6c5d6957..8b1e4b1b64 100644 --- a/install.php +++ b/install.php @@ -10,13 +10,8 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Installationsscript. * * -------------------------------------------------------------------- * - * $Revision:: $ * - * $Date:: $ * - * $Tag:: 0.2.1-FINAL $ * - * $Author:: $ * - * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009 - 2012 by Mailer Developer Team * + * Copyright (c) 2009 - 2015 by Mailer Developer Team * * For more information visit: http://mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -42,10 +37,10 @@ require('inc/libs/security_functions.php'); // Init start time -$GLOBALS['__start_time'] = microtime(true); +$GLOBALS['__start_time'] = microtime(TRUE); // Tell every module / require file we are installing -$GLOBALS['__mailer_installing'] = true; +$GLOBALS['__mailer_installing'] = TRUE; // Set module and output mode $GLOBALS['__module'] = 'install'; @@ -73,12 +68,12 @@ if ((isInstalled()) && (getRequestElement('install_page') != 'finished')) { } // END - if // Load header here -loadIncludeOnce('inc/header.php'); +loadPageHeader(); // Handle fatal errors runFilterChain('handle_fatal_errors'); -// Do we have plain or AJAX-enabled installation? +// Is plain or AJAX-enabled installation used? if (isGetRequestElementSet('installer')) { // Set installer type setSession('installer', getRequestElement('installer')); @@ -96,7 +91,7 @@ if (isGetRequestElementSet('installer')) { ); // Load main installation table - loadTemplate('install_main_ajax', false, $content); + loadTemplate('install_main_ajax', FALSE, $content); } elseif (isPlainInstaller()) { // Plain installer: // Load include file @@ -110,7 +105,7 @@ if (isGetRequestElementSet('installer')) { } // Footer -loadIncludeOnce('inc/footer.php'); +loadPageFooter(); // [EOF] ?>