]> git.mxchange.org Git - mailer.git/blobdiff - inc/libs/payout_functions.php
A lot more naming conventions applied
[mailer.git] / inc / libs / payout_functions.php
index bc6036e6cfa261fda4576808f6016d42bcca83e5..5122ee6140aa9546e383f510e2d66544dcf57f0a 100644 (file)
@@ -51,7 +51,7 @@ WHERE %s >= min_points
 ORDER BY type", array($POINTS), __FILE__, __LINE__);
                if (SQL_NUMROWS($result) > 0)
                {
-                       OUTPUT_HTML ("<BR><DIV align=\"center\">
+                       OUTPUT_HTML("<BR><DIV align=\"center\">
 <DIV align=\"center\"><STRONG>".PAYOUT_NOW.":</STRONG></DIV><BR>
 <UL>");
                        // Now let's check
@@ -62,24 +62,24 @@ ORDER BY type", array($POINTS), __FILE__, __LINE__);
                                {
                                        // 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>");
+                                       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>");
                                }
                        }
 
                        // Free memory
                        SQL_FREERESULT($result);
-                       OUTPUT_HTML ("</UL></DIV>");
+                       OUTPUT_HTML("</UL></DIV>");
                }
                 else
                {
                        // No payout types setup so far
-                       OUTPUT_HTML ("<P><FONT class=\"guest_failed\">".PAYOUT_NO_PAYOUT_TYPES."</FONT></P>");
+                       OUTPUT_HTML("<P><FONT class=\"guest_failed\">".PAYOUT_NO_PAYOUT_TYPES."</FONT></P>");
                }
        }
         else
        {
                // Points is empty
-               OUTPUT_HTML ("<P><FONT class=\"guest_failed\">".PAYOUT_NO_POINTS_ENTERED."</FONT></P>");
+               OUTPUT_HTML("<P><FONT class=\"guest_failed\">".PAYOUT_NO_POINTS_ENTERED."</FONT></P>");
        }
 }
 //