X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=click.php;h=94d68602c7d97420e0f240dc2a875a85a1a311c8;hp=515a958587ba3583e8e94c20978026c9cc85c834;hb=84317e249885eb03a99f2946acf285ff27d506ac;hpb=d798a412acb8c1263933bd7f7a0fd9aa251495a7 diff --git a/click.php b/click.php index 515a958587..94d68602c7 100644 --- a/click.php +++ b/click.php @@ -32,7 +32,7 @@ ************************************************************************/ // Load security stuff here (Oh, I hope this is not unsecure? Am I paranoia??? ;-) ) -require_once("inc/libs/security_functions.php"); +require("inc/libs/security_functions.php"); // Init "action" and "what" global $what, $action; @@ -46,13 +46,12 @@ 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=%s LIMIT 1", array(bigintval($_GET['banner'])), __FILE__, __LINE__); + 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("ref.php?refid=".bigintval($_GET['user'])); - } else { - LOAD_URL("shop_reseller.php?reseller=".bigintval($_GET['user'])); + } elseif (!empty($_GET['reseller'])) { + LOAD_URL("shop_reseller.php?reseller=".bigintval($_GET['reseller'])); } } // END - if } // END - if