summaryrefslogtreecommitdiff
path: root/src/application/mystic/forum/Messaging.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/application/mystic/forum/Messaging.php')
-rw-r--r--src/application/mystic/forum/Messaging.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/application/mystic/forum/Messaging.php b/src/application/mystic/forum/Messaging.php
index 2f5c80d..3530d5e 100644
--- a/src/application/mystic/forum/Messaging.php
+++ b/src/application/mystic/forum/Messaging.php
@@ -11,7 +11,7 @@ final class Messaging {
const ENT_FLAGS = \ENT_COMPAT | \ENT_HTML401 | \ENT_SUBSTITUTE;
protected static function message(array $items, string $headerText, string $headerColor, string $headerTextColor): void {
- echo "<HTML><BODY>\n";
+ //echo "<HTML><BODY>\n";
echo "<TABLE cellspacing=2 cellpadding=0 bgcolor=gray><TR><TD>\n";
echo "<TABLE width=\"100%\" cellspacing=0 cellpadding=4 bgcolor=\"".htmlentities($headerColor, self::ENT_FLAGS)."\"><TR><TD align=center>\n";
@@ -20,7 +20,7 @@ final class Messaging {
echo "</TD></TR><TR><TD>\n";
- echo "<TABLE cellspacing=0 cellpadding=4 bgcolor=WHITE><TR><TD align=left><FONT size=2 face=Arial color=BLACK>\n";
+ echo "<TABLE width=\"100%\" cellspacing=0 cellpadding=4 bgcolor=WHITE><TR><TD align=left><FONT size=2 face=Arial color=BLACK>\n";
foreach ($items as $item) {
if (is_scalar($item)) {
@@ -65,7 +65,7 @@ final class Messaging {
echo "</FONT></TD></TR></TABLE>\n";
echo "</TD></TR></TABLE>\n";
- echo "</BODY></HTML>\n";
+ //echo "</BODY></HTML>\n";
}
public static function bold(string $contents): array {