Even more rewrites/fixes from EL branch (please report any broken part after you...
[mailer.git] / inc / libs / doubler_functions.php
index 1efe4bf30cf5c3fc26b4409d391a437735d30e16..b6eddaf4432c2349b6baacf6ab2f3428feb7ccb3 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /************************************************************************
- * MXChange v0.2.1                                    Start: 02/17/2005 *
- * ===============                              Last change: 02/17/2005 *
+ * Mailer v0.2.1-FINAL                                Start: 02/17/2005 *
+ * ===================                          Last change: 02/17/2005 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : doubler_functions.php                            *
@@ -18,6 +18,7 @@
  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
+ * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
  * For more information visit: http://www.mxchange.org                  *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
@@ -44,16 +45,16 @@ if (!defined('__SECURITY')) {
 // Generates a HTML table based on given data
 // @TODO Lame description
 function generateDoublerTable ($userid = '0', $done = 'N', $ref = 'N', $sort = 'ASC') {
-       if (empty($cnt)) $cnt = 0;
-       $add = ''; $DT_MODE = 0;
+       if (empty($cnt)) $cnt = '0';
+       $add = ''; $DT_MODE = '0';
        if ($userid > 0) {
                // Load entries only from a single user
-               $add = " AND `userid`='".bigintval($userid)."'";
-               $mode = 'member'; $COLS = '4'; $DT_MODE = '2';
+               $add = sprintf(" AND `userid`=%s", bigintval($userid));
+               $mode = 'member'; $COLS = 4; $DT_MODE = 2;
                $message = getMessage('DOUBLER_MEMBER_NO_ENTRIES_FOUND');
        } else {
                // Guest mode!
-               $mode = 'guest'; $COLS = '3'; $DT_MODE = '3';
+               $mode = 'guest'; $COLS = 3; $DT_MODE = 3;
                $message = getMessage('DOUBLER_GUEST_NO_ENTRIES_FOUND');
        }
 
@@ -69,15 +70,21 @@ function generateDoublerTable ($userid = '0', $done = 'N', $ref = 'N', $sort = '
        }
 
        // List entries
-       $result = SQL_QUERY("SELECT
+       $result = SQL_QUERY_ESC("SELECT
        `userid`, `refid`, `points`, `timemark`
 FROM
        `{?_MYSQL_PREFIX?}_doubler`
 WHERE
-       `completed`='".$done."' AND is_ref`='".$ref."'".$add."
+       `completed`='%s' AND `is_ref`='%s'" . $add . "
 ORDER BY
-       `timemark` ".$sort."
-LIMIT ".$limit, __FUNCTION__, __LINE__);
+       `timemark` %s
+LIMIT %s",
+               array(
+                       $done,
+                       $ref,
+                       $sort,
+                       $limit
+               ), __FUNCTION__, __LINE__);
 
        if (SQL_NUMROWS($result) > 0) {
                // List entries
@@ -92,11 +99,11 @@ LIMIT ".$limit, __FUNCTION__, __LINE__);
 
                        // Prepare data for the row template
                        $content = array(
-                               'userid' => $content['userid'],
-                               'rid'    => $content['refid'],
-                               'points' => translateComma($content['points']),
-                               'stamp'  => generateDateTime($content['timemark'], $DT_MODE),
-                               'sw'     => $SW,
+                               'userid'   => $content['userid'],
+                               'rid'      => $content['refid'],
+                               'points'   => translateComma($content['points']),
+                               'timemark' => generateDateTime($content['timemark'], $DT_MODE),
+                               'sw'       => $SW,
                        );
 
                        // Load template and switch color
@@ -109,7 +116,7 @@ LIMIT ".$limit, __FUNCTION__, __LINE__);
        } else {
                // List no entries
                $OUT = "<tr>
-  <td colspan=\"".$COLS."\" align=\"center\" class=\"doubler_big_row bottom2\">
+  <td colspan=\"".$COLS."\" align=\"center\" class=\"doubler_big_row bottom\">
     ".loadTemplate('admin_settings_saved', true, $message)."
   </td>
 </tr>\n";
@@ -122,7 +129,7 @@ LIMIT ".$limit, __FUNCTION__, __LINE__);
 //
 function DOUBLER_GET_TOTAL_POINTS_LEFT() {
        // Initialize variables
-       $points = 0;
+       $points = '0';
 
        if (getConfig('doubler_own') == 'Y') {
                // Take points from doubler's own account