X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=inc%2Fdoubler_send.php;h=fd72454f9aaf555558ee153ed7377f2b44c6aea0;hb=5d75a333699489b2883fc666272db93c4778a1e4;hp=7e38020dcf3ce0dff4870d8b3a1f8042d1e58026;hpb=60494e212a67fe360bfbb481eb4928480a6f379b;p=mailer.git diff --git a/inc/doubler_send.php b/inc/doubler_send.php index 7e38020dcf..fd72454f9a 100644 --- a/inc/doubler_send.php +++ b/inc/doubler_send.php @@ -52,7 +52,7 @@ if ($DOUBLER_POINTS == 0) // If not currently doubled set it to zero unset($_GET['DOUBLER_UID']); unset($_POST['DOUBLER_UID']); -unset($_COOKIE['DOUBLER_UID']); +unset($_SESSION['DOUBLER_UID']); if (empty($DOUBLER_UID)) $DOUBLER_UID = "0"; // Check for doubles which we can pay out @@ -161,13 +161,13 @@ if (((SQL_NUMROWS($result_total) > 0) && ($_CONFIG['doubler_sent_all'] == 'Y')) if (!$OK) { // Add points to used doubler points - $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_config SET doubler_used=doubler_used+%s WHERE config='0' LIMIT 1", + $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_config SET doubler_used=doubler_used+%s WHERE config=0 LIMIT 1", array($points), __FILE__, __LINE__); // Destroy cache if (GET_EXT_VERSION("cache") >= "0.1.2") { - if ($CACHE->cache_file("config", true)) $CACHE->cache_destroy(); + if ($cacheInstance->cache_file("config", true)) $cacheInstance->cache_destroy(); } }