X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fdoubler_send.php;h=f3084e22a554fd93707a8710fc24c15cced91e69;hb=9709e0653e1a90fd65e6308b97a6fabb586a32a1;hp=1fe8475e0f8815581edfc0dde7f5bf0febe1640b;hpb=0369c36aaab5af6ed44da1e13a53baef285f79b4;p=mailer.git diff --git a/inc/doubler_send.php b/inc/doubler_send.php index 1fe8475e0f..f3084e22a5 100644 --- a/inc/doubler_send.php +++ b/inc/doubler_send.php @@ -32,7 +32,7 @@ ************************************************************************/ // Some security stuff... -if (ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) { +if (!defined('__SECURITY')) { $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php"; require($INC); } @@ -107,19 +107,10 @@ if (((SQL_NUMROWS($result_total) > 0) && ($_CONFIG['doubler_sent_all'] == "Y")) } // Exclude webmaster from doubling... - if ($uid != $_CONFIG['doubler_uid']) - { + if ($uid != $_CONFIG['doubler_uid']) { // Add points - $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_user_points SET points=points+%s WHERE userid=%s AND ref_depth=0 LIMIT 1", - array($points, bigintval($uid)), __FILE__, __LINE__); - - // Update mediadata as well - if (GET_EXT_VERSION("mediadata") >= "0.0.4") - { - // Update database - MEDIA_UPDATE_ENTRY(array("total_points"), "add", $points); - } - } + ADD_POINTS_REFSYSTEM($uid, $points, false, "0", false, "direct"); + } // END - if // Set entry as "payed" $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_doubler SET completed='Y' WHERE id=%s LIMIT 1", @@ -150,7 +141,7 @@ if (((SQL_NUMROWS($result_total) > 0) && ($_CONFIG['doubler_sent_all'] == "Y")) // Update doubler's account only when others are not updated if (!$OK) { // Add points to used doubler points - UPDATE_CONFIG("douber_used", $points, "+"); + UPDATE_CONFIG("doubler_used", $points, "+"); } // Update variables to prevent errors