A lot more naming conventions applied
[mailer.git] / inc / modules / admin / what-email_details.php
index fea0be8d85e3c01b89325c4b6a564a0843bc76bf..0fbd32f90c6894fe6db7ab937449b412bc51b7d1 100644 (file)
@@ -125,7 +125,7 @@ $MAIL = false;
 if (SQL_NUMROWS($result_list) > 0)
 {
        // Mail orders are in pool so we can display them
-       OUTPUT_HTML ("<DIV align=\"center\">
+       OUTPUT_HTML("<DIV align=\"center\">
 <TABLE border=\"0\" cellspacing=\"0\" cellpadding=\"0\" class=\"admin_table dashed\" width=\"99%\">
 <TR>
   <TD colspan=\"3\" align=\"center\" height=\"25\" class=\"admin_title\">
@@ -158,7 +158,7 @@ if (SQL_NUMROWS($result_list) > 0)
                }
 
                // List mail
-               OUTPUT_HTML ("<TR>
+               OUTPUT_HTML("<TR>
   <TD class=\"bottom top2 right\" width=\"23%\" align=\"center\">
     ".EMAIL_SENDER.":<BR>
     <STRONG class=\"admin_misc\">".ADMIN_USER_PROFILE_LINK($pool[1])."</STRONG>
@@ -227,13 +227,13 @@ if (SQL_NUMROWS($result_list) > 0)
        if ($PAGES > 1) ADD_EMAIL_NAV($PAGES, $CONFIG['mails_page'], false, "3");
 
        // Output footer
-       OUTPUT_HTML ("</TABLE>
+       OUTPUT_HTML("</TABLE>
 </DIV>");
        $MAIL = true;
        if ((EXT_IS_ACTIVE("bonus")) && ($WHO == _ALL))
        {
                // Check only if bonus extension is active
-               if (SQL_NUMROWS($result_bonus) > 0) OUTPUT_HTML ("<BR><BR>");
+               if (SQL_NUMROWS($result_bonus) > 0) OUTPUT_HTML("<BR><BR>");
        }
 }
 
@@ -243,7 +243,7 @@ if ((EXT_IS_ACTIVE("bonus")) && ($WHO == _ALL))
        if (SQL_NUMROWS($result_bonus) > 0)
        {
                // Mail orders are in pool so we can display them
-               OUTPUT_HTML ("<DIV align=\"center\">
+               OUTPUT_HTML("<DIV align=\"center\">
 <TABLE border=\"0\" cellspacing=\"0\" cellpadding=\"0\" class=\"admin_table dashed\" width=\"99%\">
 <TR>
   <TD colspan=\"3\" align=\"center\" height=\"25\" class=\"admin_title\">
@@ -267,7 +267,7 @@ if ((EXT_IS_ACTIVE("bonus")) && ($WHO == _ALL))
                                $unconfirmed = "<STRONG><A href=\"".URL."/modules.php?module=admin&amp;what=list_unconfirmed&amp;bid=".$bonus[0]."\">".$unconfirmed."</A></STRONG>";
                        }
 
-                       OUTPUT_HTML ("<TR>
+                       OUTPUT_HTML("<TR>
   <TD class=\"bottom top2 right\" colspan=\"2\" width=\"46%\" align=\"center\">
     ".EMAIL_SUBJECT.":<BR>
     <STRONG class=\"admin_misc\">".$bonus[1]."</STRONG>
@@ -333,7 +333,7 @@ if ((EXT_IS_ACTIVE("bonus")) && ($WHO == _ALL))
                if ($PAGES > 1) ADD_EMAIL_NAV($PAGES, $CONFIG['mails_page'], false, "3");
 
                // Output footer
-               OUTPUT_HTML ("</TABLE>
+               OUTPUT_HTML("</TABLE>
 </DIV>");
                $MAIL = true;
        }
@@ -342,7 +342,7 @@ if ((EXT_IS_ACTIVE("bonus")) && ($WHO == _ALL))
 if (!$MAIL)
 {
        // No mail orders fond
-       OUTPUT_HTML ("<SPAN class=\"admin_failed\">".ADMIN_NO_MAILS_IN_POOL."</SPAN>");
+       OUTPUT_HTML("<SPAN class=\"admin_failed\">".ADMIN_NO_MAILS_IN_POOL."</SPAN>");
 }
 //
 ?>