More misc fixes and rewrites (sorry, lame description)
[mailer.git] / inc / libs / autopurge_functions.php
index b0c8a2e38a258cbb452659f4cacc60d8979dfbe2..a420f9ee13423a9945140c57d7e1f46e0eadc114 100644 (file)
@@ -44,17 +44,17 @@ if (!defined('__SECURITY')) {
 
 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",
+       $result = SQL_QUERY_ESC("SELECT `ref_payout` FROM `{!_MYSQL_PREFIX!}_user_data` WHERE `userid`=%s LIMIT 1",
                array(bigintval($uid)), __FUNCTION__, __LINE__);
        list($payout) = SQL_FETCHROW($result);
        SQL_FREERESULT($result);
 
        if (($payout > 0) && (!empty($payout))) {
                // Yes, he has.
-               $target = "locked_points";
+               $target = 'locked_points';
        } elseif ($payout == '0') {
                // No, he has not
-               $target = "points";
+               $target = 'points';
        }
 
        // Add points...
@@ -65,18 +65,18 @@ function AUTOPURGE_ADD_POINTS($uid, $points) {
                $jackpot += $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",
+               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__);
 
                // Update mediadata as well
-               if ((GET_EXT_VERSION('mediadata') >= '0.0.4') && ($target == "points")) {
+               if ((GET_EXT_VERSION('mediadata') >= '0.0.4') && ($target == 'points')) {
                        // Update database
                        MEDIA_UPDATE_ENTRY(array('total_points'), 'add', $points);
-               }
+               } // END - if
 
                // Send out mail to user
-               $msg = LOAD_EMAIL_TEMPLATE("member_autopurge_points", translateComma($points), $uid);
-               sendEmail($uid, getMessage('AUTOPURGE_MEMBER_SUBJECT'), $msg);
+               $message = LOAD_EMAIL_TEMPLATE('member_autopurge_points', translateComma($points), $uid);
+               sendEmail($uid, getMessage('AUTOPURGE_MEMBER_SUBJECT'), $message);
        }
 }