From bf6036770416b51a6342b26f490abcc3be687f8d Mon Sep 17 00:00:00 2001
From: Wolf <jonas.hess@mailbox.org>
Date: Mon, 31 Jan 2022 11:38:10 +0100
Subject: [PATCH] you do not need to escape " in '

---
 chat.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/chat.php b/chat.php
index 49eeb65..ddb5007 100644
--- a/chat.php
+++ b/chat.php
@@ -2311,11 +2311,11 @@ function print_chatters(){
 				echo "<th><br/>$I[staff]:</th><td>&nbsp;</td><td>".implode(' &nbsp; ', $S).'</td>';
 		}
 		if($U['status']>=3){ // can chat in member channel
-			echo '<th>' . $channellink . 's ?" target="post"><br/>' . $I['members'] . ':</a></th><td>&nbsp;</td><td class=\"chattername\">'.implode(' &nbsp; ', $M).'</td>';
+			echo '<th>' . $channellink . 's ?" target="post"><br/>' . $I['members'] . ':</a></th><td>&nbsp;</td><td class="chattername">'.implode(' &nbsp; ', $M).'</td>';
 		} else {
 			echo "<th><br/>$I[members]:</th><td>&nbsp;</td><td>".implode(' &nbsp; ', $M).'</td>';
 		}
-		echo '<th>' . $channellink . 's *" target="post"><br/>' . $I['guests'] . ':</a></th><td>&nbsp;</td><td class=\"chattername\">'.implode(' &nbsp; ', $G).'</td>';
+		echo '<th>' . $channellink . 's *" target="post"><br/>' . $I['guests'] . ':</a></th><td>&nbsp;</td><td class="chattername">'.implode(' &nbsp; ', $G).'</td>';
 		echo '</tr></table></div>';
 	}
 }