X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=install.php;h=0253d0e1d423a73aa2d8c1b59e4ee8f8deaaa8ec;hp=89b6e33c96bffc4c2b0e5752a93b068cee47fdd4;hb=b45475d69fb583418eca1314b57278dd9af7a4f4;hpb=f3e4c2c048761589836fdbe6bd2e46599a1833a7 diff --git a/install.php b/install.php index 89b6e33c96..0253d0e1d4 100644 --- a/install.php +++ b/install.php @@ -20,10 +20,10 @@ * Datei nach der fertiggestellten Installation oder JEDER * * kann Ihr Mailtausch-Script neu einstellen!!! * * -------------------------------------------------------------------- * - * $Revision:: 856 $ * - * $Date:: 2009-03-06 20:24:32 +0100 (Fr, 06. Mär 2009) $ * + * $Revision:: $ * + * $Date:: $ * * $Tag:: 0.2.1-FINAL $ * - * $Author:: stelzi $ * + * $Author:: $ * * Needs to be in all Files and every File needs "svn propset * * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * @@ -47,30 +47,30 @@ ************************************************************************/ // Load security system -require("inc/libs/security_functions.php"); +require('inc/libs/security_functions.php'); // Tell every module / include file we are installing $GLOBALS['mxchange_installing'] = true; // Init "action" and "what" -$GLOBALS['what'] = ""; -$GLOBALS['action'] = ""; +$GLOBALS['what'] = ''; +$GLOBALS['action'] = ''; // Set CSS variable for "normal mode" $GLOBALS['output_mode'] = 0; // Set module -$GLOBALS['module'] = "install"; +$GLOBALS['module'] = 'install'; // Load config file -require("inc/config.php"); +require('inc/config.php'); // Header -LOAD_INC("inc/header.php"); +LOAD_INC('inc/header.php'); // Reload page to page=welcome when it is not specified if (!REQUEST_ISSET_GET('page')) { - LOAD_URL("install.php?page=welcome"); + LOAD_URL('install.php?page=welcome'); } // END - if // Already installed? @@ -82,17 +82,17 @@ if ((isInstalled()) && (isAdminRegistered())) { // Does something goes wrong? if (getTotalFatalErrors() == 0) { // Add main installation table - LOAD_TEMPLATE("install_header"); + LOAD_TEMPLATE('install_header'); // Here start's our installtion stuff - LOAD_INC_ONCE("inc/install-inc.php"); + LOAD_INC_ONCE('inc/install-inc.php'); // Close main installation table - LOAD_TEMPLATE("install_footer"); + LOAD_TEMPLATE('install_footer'); } // Footer -LOAD_INC("inc/footer.php"); +LOAD_INC('inc/footer.php'); // ?>