Cookie code removed, rewritten, internal URLs are now relative (see LOAD_URL()),...
[mailer.git] / click.php
index 4dd6144b6764b777778113efe92855b7622b1d87..f5dbe4bd91d9af879dd93ce520a935c1c68f7b8a 100644 (file)
--- a/click.php
+++ b/click.php
@@ -42,23 +42,23 @@ $GLOBALS['what'] = ""; $GLOBALS['action'] = "";
 $GLOBALS['module'] = "click"; $CSS = -1;
 
 // Load the required file(s)
-require ("inc/config.php");
+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']));
                }
-       }
-       exit();
-} else {
-       // Do nothing for now
-       die();
-}
-//
+       } // END - if
+} // END - if
+
+// Load index page
+LOAD_URL("index.php");
+
+// [EOF]
 ?>