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> </td><td>".implode(' ', $S).'</td>'; } if($U['status']>=3){ // can chat in member channel - echo '<th>' . $channellink . 's ?" target="post"><br/>' . $I['members'] . ':</a></th><td> </td><td class=\"chattername\">'.implode(' ', $M).'</td>'; + echo '<th>' . $channellink . 's ?" target="post"><br/>' . $I['members'] . ':</a></th><td> </td><td class="chattername">'.implode(' ', $M).'</td>'; } else { echo "<th><br/>$I[members]:</th><td> </td><td>".implode(' ', $M).'</td>'; } - echo '<th>' . $channellink . 's *" target="post"><br/>' . $I['guests'] . ':</a></th><td> </td><td class=\"chattername\">'.implode(' ', $G).'</td>'; + echo '<th>' . $channellink . 's *" target="post"><br/>' . $I['guests'] . ':</a></th><td> </td><td class="chattername">'.implode(' ', $G).'</td>'; echo '</tr></table></div>'; } }