summaryrefslogtreecommitdiff
path: root/src/application/mystic/forum/Messaging.php
diff options
context:
space:
mode:
authorJonas Kohl <git@jonaskohl.de>2024-09-12 19:49:17 +0200
committerJonas Kohl <git@jonaskohl.de>2024-09-12 19:49:17 +0200
commit086e2d2668784469ec114f6e6fd2b3dace3d7c3b (patch)
treeb9bacedb713501d88d24085940267a7c94e69b29 /src/application/mystic/forum/Messaging.php
parent34b1b391d4b03659a96f868857c230002b351514 (diff)
Way more progress on forum
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 {