]> git.mxchange.org Git - mailer.git/blobdiff - click.php
Better RNG choosen (mt_rand()), writing initial secret file fixed, thanks to profi...
[mailer.git] / click.php
index d5c3aaa6a011854deb984395def4607c8273a14b..c10ff149c390d339ecba036cd6cca32a9ebda8db 100644 (file)
--- a/click.php
+++ b/click.php
@@ -48,17 +48,17 @@ if (((!empty($_GET['user'])) || (!empty($_GET['reseller']))) && (!empty($_GET['b
        // 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__);
-       if (SQL_AFFECTEDROWS($link) == 1) {
+       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]
 ?>