X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=lead-confirm.php;h=12b61064b5b64c97d063482462e4e9464c40fb17;hb=c92c887891e04b93486205d74fd6c16158de30fc;hp=4c179e831c0188bc175210c9087e5c53fd30ba17;hpb=f2820f39f5dce98bac5232ac4963690f4c816e2a;p=mailer.git diff --git a/lead-confirm.php b/lead-confirm.php index 4c179e831c..12b61064b5 100644 --- a/lead-confirm.php +++ b/lead-confirm.php @@ -10,16 +10,9 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Alles um den Bestaetigungslink * * -------------------------------------------------------------------- * - * $Revision:: $ * - * $Date:: $ * - * $Tag:: 0.2.1-FINAL $ * - * $Author:: $ * - * Needs to be in all Files and every File needs "svn propset * - * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * - * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009, 2010 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 * @@ -41,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'); @@ -59,7 +50,7 @@ setContentType('text/html'); redirectOnUninstalledExtension('lead'); // Header -loadIncludeOnce('inc/header.php'); +loadPageHeader(); // Initialize the array for the template $content = array( @@ -77,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] ?>