]> git.mxchange.org Git - mailer.git/blobdiff - inc/libs/payout_functions.php
Damn typo fixed... ;-)
[mailer.git] / inc / libs / payout_functions.php
index 9ab7329ec72f39bdf6b3bcce7ca92983758f03dd..b96b4d2f9c402eaebb03ba6742a0f89aca7665cf 100644 (file)
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  : Alle Ihrer gesammelten Punkte                    *
  * -------------------------------------------------------------------- *
- *                                                                      *
+ * $Revision::                                                        $ *
+ * $Date::                                                            $ *
+ * $Tag:: 0.2.1-FINAL                                                 $ *
+ * $Author::                                                          $ *
+ * Needs to be in all Files and every File needs "svn propset           *
+ * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
  * For more information visit: http://www.mxchange.org                  *
@@ -40,7 +45,9 @@ if (!defined('__SECURITY')) {
 //
 function PAYOUT_OUTPUT_PAYOUT_LIST ($points) {
        // Replace german decimal comma with CPU's decimal dot
-       $points = strval(REVERT_COMMA($points));
+       $points = REVERT_COMMA($points);
+
+       // Enougth points?
        if ($points > 0) {
                // Pay this out!
                $result = SQL_QUERY_ESC("SELECT id, type, rate, min_points
@@ -52,14 +59,17 @@ ORDER BY type", array($points), __FUNCTION__, __LINE__);
 <div align=\"center\"><strong>{--PAYOUT_NOW--}:</strong></div><br />
 <ul>");
                        // Now let's check
-                       while (list($id, $type, $rate, $mpoi) = SQL_FETCHROW($result)) {
-                               $type = COMPILE_CODE($type);
-                               if ($points >= $mpoi) {
+                       while ($content = SQL_FETCHARRAY($result)) {
+                               // Compile the type
+                               $content['type'] = COMPILE_CODE($content['type']);
+
+                               // Are these points enougth?
+                               if ($points >= $content['min_points']) {
                                        // Ok we found one
-                                       $P = $points * $rate - 0.5;
-                                       OUTPUT_HTML("<li>{--PAYOUT_IN--}: <strong><a href=\"{!URL!}/modules.php?module=login&amp;what=payout&amp;payout=".$id."\">".$type." ({--PAYOUT_MAX--} ".round($P)." ".$type.")</a></strong></li>");
-                               }
-                       }
+                                       $P = $points * $content['rate'] - 0.5;
+                                       OUTPUT_HTML("<li>{--PAYOUT_IN--}: <strong><a href=\"{!URL!}/modules.php?module=login&amp;what=payout&amp;payout=".$content['id']."\">".$content['type']." ({--PAYOUT_MAX--} ".round($P)." ".$content['type'].")</a></strong></li>");
+                               } // END - if
+                       } // END - while
 
                        OUTPUT_HTML("</ul></div>");
                } else {