X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=click.php;h=c10ff149c390d339ecba036cd6cca32a9ebda8db;hb=b87840adbec874ea366730e89d73a647dd9c2137;hp=8a083637b46035d474f1f8bbc2d069d46b23e5e7;hpb=75ad748a68473ace540251427a74fb781b1145e9;p=mailer.git diff --git a/click.php b/click.php index 8a083637b4..c10ff149c3 100644 --- a/click.php +++ b/click.php @@ -37,8 +37,6 @@ 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; @@ -49,18 +47,18 @@ 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) { + $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_refbanner SET clicks=clicks+1 WHERE id=%s LIMIT 1", array(bigintval($_GET['banner'])), __FILE__, __LINE__); + if (SQL_AFFECTEDROWS() == 1) { if (!empty($_GET['user'])) { - LOAD_URL(URL."/ref.php?refid=".bigintval($_GET['user'])); + LOAD_URL("ref.php?refid=".bigintval($_GET['user'])); } else { - LOAD_URL(URL."/shop_reseller.php?reseller=".bigintval($_GET['user'])); + LOAD_URL("shop_reseller.php?reseller=".bigintval($_GET['user'])); } - } - exit(); -} else { - // Do nothing for now - die(); -} -// + } // END - if +} // END - if + +// Load index page +LOAD_URL("index.php"); + +// [EOF] ?>