X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=lead-confirm.php;h=12b61064b5b64c97d063482462e4e9464c40fb17;hp=0ec4891877be98f3c092ca9eb67217a455665f56;hb=378729b7c01f1cf81a83de69deaa0510b3302af4;hpb=c3b4eaf29946349ff058691db2dcb615a5379bb2 diff --git a/lead-confirm.php b/lead-confirm.php index 0ec4891877..12b61064b5 100644 --- a/lead-confirm.php +++ b/lead-confirm.php @@ -10,14 +10,9 @@ * -------------------------------------------------------------------- * * 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 * - * For more information visit: http://www.mxchange.org * + * Copyright (c) 2009 - 2013 by Mailer Developer Team * + * For more information visit: http://mxchange.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * @@ -39,13 +34,11 @@ 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'); @@ -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] ?>