X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=lead-confirm.php;h=69125767d86c0b29e4ba9a5ce4ab46efe637ccca;hp=44b5f02081fdd9613e0ffc063f7349b2f92a9615;hb=095f5ab59b539834d2c67e5d409d01820e10d8be;hpb=20741b93fd58620af677a7f1039ffd16ea6ec689 diff --git a/lead-confirm.php b/lead-confirm.php index 44b5f02081..69125767d8 100644 --- a/lead-confirm.php +++ b/lead-confirm.php @@ -10,13 +10,8 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Alles um den Bestaetigungslink * * -------------------------------------------------------------------- * - * $Revision:: $ * - * $Date:: $ * - * $Tag:: 0.2.1-FINAL $ * - * $Author:: $ * - * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009 - 2011 by Mailer Developer Team * + * Copyright (c) 2009 - 2016 by Mailer Developer Team * * For more information visit: http://mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -39,16 +34,14 @@ require('inc/libs/security_functions.php'); // Init start time -$GLOBALS['startTime'] = microtime(true); - -// Set module -$GLOBALS['module'] = 'lead-confirm'; +$GLOBALS['__start_time'] = microtime(TRUE); -// Set "CSS-Mode" -$GLOBALS['output_mode'] = '0'; +// Set module and output mode +$GLOBALS['__module'] = 'lead-confirm'; +$GLOBALS['__output_mode'] = '0'; -// Load config.php -require('inc/config-global.php'); +// Initialize application +require('inc/init.php'); // Set content type setContentType('text/html'); @@ -57,7 +50,7 @@ setContentType('text/html'); redirectOnUninstalledExtension('lead'); // Header -loadIncludeOnce('inc/header.php'); +loadPageHeader(); // Initialize the array for the template $content = array( @@ -75,10 +68,10 @@ if ((isSessionVariableSet('lead_userid')) && (fetchUserData(getSession('lead_use } // END - if // Load the lead template -loadTemplate('lead_code', false, $content); +loadTemplate('lead_code', FALSE, $content); // Footer -loadIncludeOnce('inc/footer.php'); +loadPageFooter(); // [EOF] ?>