X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Flibs%2Fautopurge_functions.php;h=e9b9fdffadefed0da6dab5581be285e777063a11;hb=fe3a4b3357f95127d6cfa1842b49a6f32e2483f9;hp=7ce6fd555f5f4bc8a58becfa0a6dcea022ae72f7;hpb=de454a4f3cba4ac73cb9a0bc4dc02f81bdd4e53f;p=mailer.git diff --git a/inc/libs/autopurge_functions.php b/inc/libs/autopurge_functions.php index 7ce6fd555f..e9b9fdffad 100644 --- a/inc/libs/autopurge_functions.php +++ b/inc/libs/autopurge_functions.php @@ -38,21 +38,21 @@ // Some security stuff... if (!defined('__SECURITY')) { - $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php"; + $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php'; require($INC); } function AUTOPURGE_ADD_POINTS($uid, $points) { // Check if he has locked points or not $result = SQL_QUERY_ESC("SELECT ref_payout FROM `{!_MYSQL_PREFIX!}_user_data` WHERE userid=%s LIMIT 1", - array(bigintval($uid)), __FUNCTION__, __LINE__); + array(bigintval($uid)), __FUNCTION__, __LINE__); list($payout) = SQL_FETCHROW($result); SQL_FREERESULT($result); if (($payout > 0) && (!empty($payout))) { // Yes, he has. $target = "locked_points"; - } elseif ($payout == "0") { + } elseif ($payout == '0') { // No, he has not $target = "points"; } @@ -66,7 +66,7 @@ function AUTOPURGE_ADD_POINTS($uid, $points) { } else { // .. to user's account SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_user_points` SET %s=%s+%s WHERE userid=%s AND ref_depth=0 LIMIT 1", - array($target, $target, $points, bigintval($uid)), __FUNCTION__, __LINE__); + array($target, $target, $points, bigintval($uid)), __FUNCTION__, __LINE__); // Update mediadata as well if ((GET_EXT_VERSION('mediadata') >= '0.0.4') && ($target == "points")) { @@ -75,8 +75,8 @@ function AUTOPURGE_ADD_POINTS($uid, $points) { } // Send out mail to user - $msg = LOAD_EMAIL_TEMPLATE("member_autopurge_points", TRANSLATE_COMMA($points), $uid); - SEND_EMAIL($uid, AUTOPURGE_MEMBER_SUBJECT, $msg); + $msg = LOAD_EMAIL_TEMPLATE("member_autopurge_points", translateComma($points), $uid); + sendEmail($uid, getMessage('AUTOPURGE_MEMBER_SUBJECT'), $msg); } }