]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/guest/what-sponsor_reg.php
More HTML tags ported to XHTML (all lower-case), bug #33 resolved
[mailer.git] / inc / modules / guest / what-sponsor_reg.php
index 3de41a33a0d4ddf2d72433eb01bf9ed4406767ba..d718d37849b21682924db227ef0f9ebda0e26c96 100644 (file)
@@ -290,19 +290,19 @@ FROM "._MYSQL_PREFIX."_sponsor_paytypes
 ORDER BY pay_name", __FILE__, __LINE__);
        if (SQL_NUMROWS($result) > 0) {
                // Load all types...
-               $OUT = "<TABLE border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"300\" class=\"left2 right2 top2\">\n";
+               $OUT = "<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"300\" class=\"left2 right2 top2\">\n";
                $SW = 2;
                while(list($id, $name, $rate, $curr, $min) = SQL_FETCHROW($result))
                {
-                       $OUT .= "<TR>
-  <TD class=\"bottom2 switch_sw".$SW."\" height=\"50\" style=\"padding-left: 2px; padding-right: 2px\">
+                       $OUT .= "<tr>
+  <td class=\"bottom2 switch_sw".$SW."\" height=\"50\" style=\"padding-left: 2px; padding-right: 2px\">
     <INPUT type=\"radio\" name=\"pay_type\" class=\"guest_normal\" value=\"".bigintval($id)."\">&nbsp;".$name."<br />
     <div align=\"right\">(".$min." ".$curr." = ".TRANSLATE_COMMA($rate * $min)." ".POINTS.")</div>
-  </TD>
-</TR>\n";
+  </td>
+</tr>\n";
                        $SW = 3 - $SW;
                }
-               $OUT .= "</TABLE>\n";
+               $OUT .= "</table>\n";
                define('__PAYMENT_LIST', $OUT);
                SQL_FREERESULT($result);