From bf6036770416b51a6342b26f490abcc3be687f8d Mon Sep 17 00:00:00 2001 From: Wolf 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 "
$I[staff]: ".implode('   ', $S).''; } if($U['status']>=3){ // can chat in member channel - echo '' . $channellink . 's ?" target="post">
' . $I['members'] . ': '.implode('   ', $M).''; + echo '' . $channellink . 's ?" target="post">
' . $I['members'] . ': '.implode('   ', $M).''; } else { echo "
$I[members]: ".implode('   ', $M).''; } - echo '' . $channellink . 's *" target="post">
' . $I['guests'] . ': '.implode('   ', $G).''; + echo '' . $channellink . 's *" target="post">
' . $I['guests'] . ': '.implode('   ', $G).''; echo ''; } }