win32 to unix line delimiters changed
[mailer.git] / 0.2.1 / ref.php
index bc65a42221393e53446d1dec1a23c6871b66841f..a46dc8d1c342b2fd21d13ef13e1150a96d422c12 100644 (file)
-<?php\r
-/************************************************************************\r
- * MXChange v0.2.1                                    Start: 10/13/2003 *\r
- * ===============                              Last change: 09/04/2004 *\r
- *                                                                      *\r
- * -------------------------------------------------------------------- *\r
- * File              : ref.php                                          *\r
- * -------------------------------------------------------------------- *\r
- * Short description : Redirection for the referral link                *\r
- * -------------------------------------------------------------------- *\r
- * Kurzbeschreibung  : Weiterleitungsscript f�r die Referral-Links      *\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'] = "ref"; $CSS = -1;\r
-\r
-// Load the required file(s)\r
-require ("inc/config.php");\r
-\r
-// Redirect only to registration page when this script is installed\r
-if (defined('mxchange_installed') && (mxchange_installed))\r
-{\r
-       // Base URL for redirection\r
-       switch ($CONFIG['refid_target'])\r
-       {\r
-       case "register":\r
-               $URL = URL."/modules.php?module=index&what=register&refid=";\r
-               break;\r
-\r
-       case "index":\r
-               $URL = URL."/index.php?refid=";\r
-               break;\r
-       }\r
-\r
-       // Get referral ID from ref or refid variable\r
-       if (!empty($_GET['ref']))        $ref = strip_tags(htmlentities($_GET['ref']));\r
-        elseif (!empty($_GET['refid'])) $ref = bigintval($_GET['refid']);\r
-\r
-       if (!empty($ref))\r
-       {\r
-               // Test if nickname ($test == "0") or ID\r
-               $test = "".round($ref)."";\r
-               if ((EXT_IS_ACTIVE("nickname")) && ($test != $ref))\r
-               {\r
-                       // Nickname in URL, so load the ID\r
-                       $result = SQL_QUERY_ESC("SELECT userid FROM "._MYSQL_PREFIX."_user_data WHERE nickname='%s' LIMIT 1", array($ref), __FILE__, __LINE__);\r
-                       list($ref) = SQL_FETCHROW($result);\r
-                       SQL_FREERESULT($result);\r
-               }\r
-               // Also edit this 0 !\r
-               if (empty($ref)) $ref = "0";\r
-\r
-               // We have an refid here. So we simply add it\r
-               $URL .= bigintval($ref);\r
-\r
-               // Update ref counter\r
-               $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_user_data SET ref_clicks=ref_clicks+1 WHERE userid=%d LIMIT 1",\r
-                array(bigintval($ref)), __FILE__, __LINE__);\r
-       }\r
-        else\r
-       {\r
-               // No refid and we add our refid (don't forget to set $def_refid!)\r
-               $URL = URL."/index.php";\r
-       }\r
-       // Load the URL\r
-       LOAD_URL($URL);\r
-       // Redirection should be done here\r
-}\r
- else\r
-{\r
-       // You have to configure first!\r
-       LOAD_URL(URL."/install.php");\r
-}\r
-\r
-// Really all done here... ;-)\r
-?>\r
+<?php
+/************************************************************************
+ * MXChange v0.2.1                                    Start: 10/13/2003 *
+ * ===============                              Last change: 09/04/2004 *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * File              : ref.php                                          *
+ * -------------------------------------------------------------------- *
+ * Short description : Redirection for the referral link                *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung  : Weiterleitungsscript f�r die Referral-Links      *
+ * -------------------------------------------------------------------- *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * 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'] = "ref"; $CSS = -1;
+
+// Load the required file(s)
+require ("inc/config.php");
+
+// Redirect only to registration page when this script is installed
+if (defined('mxchange_installed') && (mxchange_installed))
+{
+       // Base URL for redirection
+       switch ($CONFIG['refid_target'])
+       {
+       case "register":
+               $URL = URL."/modules.php?module=index&what=register&refid=";
+               break;
+
+       case "index":
+               $URL = URL."/index.php?refid=";
+               break;
+       }
+
+       // Get referral ID from ref or refid variable
+       if (!empty($_GET['ref']))        $ref = strip_tags(htmlentities($_GET['ref']));
+        elseif (!empty($_GET['refid'])) $ref = bigintval($_GET['refid']);
+
+       if (!empty($ref))
+       {
+               // Test if nickname ($test == "0") or ID
+               $test = "".round($ref)."";
+               if ((EXT_IS_ACTIVE("nickname")) && ($test != $ref))
+               {
+                       // Nickname in URL, so load the ID
+                       $result = SQL_QUERY_ESC("SELECT userid FROM "._MYSQL_PREFIX."_user_data WHERE nickname='%s' LIMIT 1", array($ref), __FILE__, __LINE__);
+                       list($ref) = SQL_FETCHROW($result);
+                       SQL_FREERESULT($result);
+               }
+               // Also edit this 0 !
+               if (empty($ref)) $ref = "0";
+
+               // We have an refid here. So we simply add it
+               $URL .= bigintval($ref);
+
+               // Update ref counter
+               $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_user_data SET ref_clicks=ref_clicks+1 WHERE userid=%d LIMIT 1",
+                array(bigintval($ref)), __FILE__, __LINE__);
+       }
+        else
+       {
+               // No refid and we add our refid (don't forget to set $def_refid!)
+               $URL = URL."/index.php";
+       }
+       // Load the URL
+       LOAD_URL($URL);
+       // Redirection should be done here
+}
+ else
+{
+       // You have to configure first!
+       LOAD_URL(URL."/install.php");
+}
+
+// Really all done here... ;-)
+?>