Fix for missing proxy_host if script is not installed yet and requires a HTTP request.
[mailer.git] / lead-confirm.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 05/14/2007 *
4  * ===================                          Last change: 05/14/2007 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : lead-confirm.php                                 *
8  * -------------------------------------------------------------------- *
9  * Short description : Script for lead-campaign codes                   *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Alles um den Bestaetigungslink                   *
12  * -------------------------------------------------------------------- *
13  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
14  * Copyright (c) 2009 - 2013 by Mailer Developer Team                   *
15  * For more information visit: http://mxchange.org                      *
16  *                                                                      *
17  * This program is free software; you can redistribute it and/or modify *
18  * it under the terms of the GNU General Public License as published by *
19  * the Free Software Foundation; either version 2 of the License, or    *
20  * (at your option) any later version.                                  *
21  *                                                                      *
22  * This program is distributed in the hope that it will be useful,      *
23  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
24  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
25  * GNU General Public License for more details.                         *
26  *                                                                      *
27  * You should have received a copy of the GNU General Public License    *
28  * along with this program; if not, write to the Free Software          *
29  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
30  * MA  02110-1301  USA                                                  *
31  ************************************************************************/
32
33 // Load security stuff here
34 require('inc/libs/security_functions.php');
35
36 // Init start time
37 $GLOBALS['__start_time'] = microtime(TRUE);
38
39 // Set module and output mode
40 $GLOBALS['__module']      = 'lead-confirm';
41 $GLOBALS['__output_mode'] = '0';
42
43 // Load config.php
44 require('inc/config-global.php');
45
46 // Set content type
47 setContentType('text/html');
48
49 // Is the extension active?
50 redirectOnUninstalledExtension('lead');
51
52 // Header
53 loadPageHeader();
54
55 // Initialize the array for the template
56 $content = array(
57         'lead_userid' => '0',
58         'lead_email'  => '{?WEBMASTER?}'
59 );
60
61 // Is the cookie set?
62 if ((isSessionVariableSet('lead_userid')) && (fetchUserData(getSession('lead_userid')))) {
63         // Secure the id number
64         $content['lead_userid'] = bigintval(getSession('lead_userid'));
65
66         // Load the email address
67         $content['lead_email'] = getUserData('email');
68 } // END - if
69
70 // Load the lead template
71 loadTemplate('lead_code', FALSE, $content);
72
73 // Footer
74 loadPageFooter();
75
76 // [EOF]
77 ?>