]> git.mxchange.org Git - mailer.git/blobdiff - inc/libs/bonus_functions.php
Queries fixed
[mailer.git] / inc / libs / bonus_functions.php
index 9033627032e8fa88e1a83ae2ef46af2fa7ccaf7e..6418d1e5431e9c5cc50a9cba5f361abd1ba72f17 100644 (file)
@@ -95,8 +95,8 @@ function addTurboBonus ($mid, $userid, $type) {
        // Add points to his account directly
        SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `turbo_bonus`=`turbo_bonus`+%s WHERE `userid`=%s LIMIT 1",
                array(
-                       bigintval($userid),
-                       $points
+                       $points,
+                       bigintval($userid)
                ), __FUNCTION__, __LINE__);
 
        // Rember this whole data for displaying ranking list
@@ -173,15 +173,6 @@ LIMIT 1",
                        if (SQL_NUMROWS($result_users) == 1) {
                                // Load data
                                $rows = merge_array($rows, SQL_FETCHARRAY($result_users));
-
-                               // Is ext-nickname active?
-                               if (isExtensionActive('nickname')) {
-                                       // Then get the nickname
-                                       $nick = getNickname($rows['userid']);
-
-                                       // Is it not empty? Then use it
-                                       if (!empty($nick)) $rows['userid'] = $nick;
-                               } // END - if
                        } // END - if
 
                        // Free result
@@ -203,7 +194,7 @@ LIMIT 1",
                // @TODO Move this HTML to a template
                $OUT = '<tr>
   <td colspan="3" align="center" height="30" class="bottom">
-    <div class="notice">' . getMaskedMessage('MEMBER_BONUS_NO_RANKS', $data) . '</div>
+    <div class="notice">{%message,MEMBER_BONUS_NO_RANKS=' . $data . '%}</div>
   </td>
 </tr>';
        }