branched
[mailer.git] / 0.2.1 / click.php
diff --git a/0.2.1/click.php b/0.2.1/click.php
deleted file mode 100644 (file)
index 8a08363..0000000
+++ /dev/null
@@ -1,66 +0,0 @@
-<?php
-/************************************************************************
- * MXChange v0.2.1                                    Start: 01/02/2004 *
- * ===============                              Last change: 06/18/2004 *
- *                                                                      *
- * -------------------------------------------------------------------- *
- * File              : click.php                                        *
- * -------------------------------------------------------------------- *
- * Short description : Count clicks on a banner and redirect...         *
- * -------------------------------------------------------------------- *
- * Kurzbeschreibung  : Klicks auf Banner zaehlen und weiterleiten       *
- * -------------------------------------------------------------------- *
- *                                                                      *
- * -------------------------------------------------------------------- *
- * 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'] = "click"; $CSS = -1;
-
-// Load the required file(s)
-require ("inc/config.php");
-
-if (((!empty($_GET['user'])) || (!empty($_GET['reseller']))) && (!empty($_GET['banner']))) {
-       // Update clicks counter...
-       $CLICK = 1;
-       $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_refbanner SET clicks=clicks+1 WHERE id=%d LIMIT 1", array(bigintval($_GET['banner'])), __FILE__, __LINE__);
-       if (SQL_AFFECTEDROWS($link) == 1) {
-               if (!empty($_GET['user'])) {
-                       LOAD_URL(URL."/ref.php?refid=".bigintval($_GET['user']));
-               } else {
-                       LOAD_URL(URL."/shop_reseller.php?reseller=".bigintval($_GET['user']));
-               }
-       }
-       exit();
-} else {
-       // Do nothing for now
-       die();
-}
-//
-?>