win32 to unix line delimiters changed
[mailer.git] / 0.2.1 / lead-confirm.php
index a3c3638a1974fea73ad9fb8ab433faf247ef82ee..6b9e73565e38f8ce73de7de633a84849d2021712 100644 (file)
@@ -1,91 +1,91 @@
-<?php\r
-/************************************************************************\r
- * MXChange v0.2.1                                    Start: 05/14/2007 *\r
- * ===============                              Last change: 05/14/2007 *\r
- *                                                                      *\r
- * -------------------------------------------------------------------- *\r
- * File              : lead-confirm.php                                 *\r
- * -------------------------------------------------------------------- *\r
- * Short description : Script for lead-campaign codes                   *\r
- * -------------------------------------------------------------------- *\r
- * Kurzbeschreibung  : Alles um den Best�tigungslink                    *\r
- * -------------------------------------------------------------------- *\r
- *                                                                      *\r
- * -------------------------------------------------------------------- *\r
- * Copyright (c) 2003 - 2008 by Roland Haeder                           *\r
- * For more information visit: http://www.mxchange.org                  *\r
- *                                                                      *\r
- * This program is free software; you can redistribute it and/or modify *\r
- * it under the terms of the GNU General Public License as published by *\r
- * the Free Software Foundation; either version 2 of the License, or    *\r
- * (at your option) any later version.                                  *\r
- *                                                                      *\r
- * This program is distributed in the hope that it will be useful,      *\r
- * but WITHOUT ANY WARRANTY; without even the implied warranty of       *\r
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *\r
- * GNU General Public License for more details.                         *\r
- *                                                                      *\r
- * You should have received a copy of the GNU General Public License    *\r
- * along with this program; if not, write to the Free Software          *\r
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *\r
- * MA  02110-1301  USA                                                  *\r
- ************************************************************************/\r
-\r
-// Load security stuff here (Oh, I hope this is not unsecure? Am I paranoia??? ;-) )\r
-require_once("inc/libs/security_functions.php");\r
-\r
-// Init "action" and "what"\r
-global $what, $action;\r
-$GLOBALS['what'] = ""; $GLOBALS['action'] = "";\r
-if (!empty($_GET['action'])) $GLOBALS['action'] = secureString($_GET['action']);\r
-if (!empty($_GET['what'])) $GLOBALS['what'] = secureString($_GET['what']);\r
-\r
-// Set module\r
-$GLOBALS['module'] = "lead-confirm";\r
-\r
-// Load config.php\r
-require ("inc/config.php");\r
-\r
-// Is the script installed?\r
-if (defined('mxchange_installed') && (mxchange_installed)) {\r
-       // Header\r
-       require(PATH."inc/header.php");\r
-\r
-       // Initialize the array for the template\r
-       $content = array(\r
-               'lead_uid'   => -1,\r
-               'lead_email' => "INVALID@EMAIL"\r
-       );\r
-\r
-       // Is the cookie set?\r
-       if (isset($_COOKIE['lead_uid'])) {\r
-               // Is the user-account unlocked and valid?\r
-               $result = SQL_QUERY_ESC("SELECT email FROM "._MYSQL_PREFIX."_user_data WHERE userid=%d AND status='CONFIRMED' LIMIT 1",\r
-                       array(bigintval($_COOKIE['lead_uid'])), __FILE__, __LINE__);\r
-               if (SQL_NUMROWS($result) == 1) {\r
-                       // Secure the ID number\r
-                       $content['lead_uid'] = bigintval($_COOKIE['lead_uid']);\r
-\r
-                       // Load the email address\r
-                       list($content['lead_email']) = COMPILE_CODE(SQL_FETCHROW($result));\r
-               } else {\r
-                       // Not found!\r
-                       $content['lead_uid'] = 0;\r
-               }\r
-       } else {\r
-               // Maybe spider?\r
-               $content['lead_email'] = WEBMASTER;\r
-       }\r
-\r
-       // Load the lead template\r
-       LOAD_TEMPLATE("lead_code", false, $content);\r
-\r
-       // Footer\r
-       require(PATH."inc/footer.php");\r
-} else {\r
-       // You have to configure first!\r
-       LOAD_URL("install.php");\r
-}\r
-\r
-// All done here...\r
-?>\r
+<?php
+/************************************************************************
+ * MXChange v0.2.1                                    Start: 05/14/2007 *
+ * ===============                              Last change: 05/14/2007 *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * File              : lead-confirm.php                                 *
+ * -------------------------------------------------------------------- *
+ * Short description : Script for lead-campaign codes                   *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung  : Alles um den Best�tigungslink                    *
+ * -------------------------------------------------------------------- *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * Copyright (c) 2003 - 2008 by Roland Haeder                           *
+ * For more information visit: http://www.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 *
+ * the Free Software Foundation; either version 2 of the License, or    *
+ * (at your option) any later version.                                  *
+ *                                                                      *
+ * This program is distributed in the hope that it will be useful,      *
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
+ * GNU General Public License for more details.                         *
+ *                                                                      *
+ * You should have received a copy of the GNU General Public License    *
+ * along with this program; if not, write to the Free Software          *
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
+ * MA  02110-1301  USA                                                  *
+ ************************************************************************/
+
+// Load security stuff here (Oh, I hope this is not unsecure? Am I paranoia??? ;-) )
+require_once("inc/libs/security_functions.php");
+
+// Init "action" and "what"
+global $what, $action;
+$GLOBALS['what'] = ""; $GLOBALS['action'] = "";
+if (!empty($_GET['action'])) $GLOBALS['action'] = secureString($_GET['action']);
+if (!empty($_GET['what'])) $GLOBALS['what'] = secureString($_GET['what']);
+
+// Set module
+$GLOBALS['module'] = "lead-confirm";
+
+// Load config.php
+require ("inc/config.php");
+
+// Is the script installed?
+if (defined('mxchange_installed') && (mxchange_installed)) {
+       // Header
+       require(PATH."inc/header.php");
+
+       // Initialize the array for the template
+       $content = array(
+               'lead_uid'   => -1,
+               'lead_email' => "INVALID@EMAIL"
+       );
+
+       // Is the cookie set?
+       if (isset($_COOKIE['lead_uid'])) {
+               // Is the user-account unlocked and valid?
+               $result = SQL_QUERY_ESC("SELECT email FROM "._MYSQL_PREFIX."_user_data WHERE userid=%d AND status='CONFIRMED' LIMIT 1",
+                       array(bigintval($_COOKIE['lead_uid'])), __FILE__, __LINE__);
+               if (SQL_NUMROWS($result) == 1) {
+                       // Secure the ID number
+                       $content['lead_uid'] = bigintval($_COOKIE['lead_uid']);
+
+                       // Load the email address
+                       list($content['lead_email']) = COMPILE_CODE(SQL_FETCHROW($result));
+               } else {
+                       // Not found!
+                       $content['lead_uid'] = 0;
+               }
+       } else {
+               // Maybe spider?
+               $content['lead_email'] = WEBMASTER;
+       }
+
+       // Load the lead template
+       LOAD_TEMPLATE("lead_code", false, $content);
+
+       // Footer
+       require(PATH."inc/footer.php");
+} else {
+       // You have to configure first!
+       LOAD_URL("install.php");
+}
+
+// All done here...
+?>