]> git.mxchange.org Git - mailer.git/blobdiff - lead-confirm.php
Moved "fix" files (which only helps to fix stuff) in own inc/fixes/ folder.
[mailer.git] / lead-confirm.php
index 0ec4891877be98f3c092ca9eb67217a455665f56..262724e6a43336fd489a50186b3b57bff2394020 100644 (file)
  * -------------------------------------------------------------------- *
  * 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 - 2016 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 *
 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]
 ?>