From 7fd96ccb38a9a0bddb285cad976ac9bfbce9b3ab Mon Sep 17 00:00:00 2001 From: Daniel Winzen Date: Fri, 28 Jun 2024 19:42:27 +0200 Subject: [PATCH] Fix incognito mode and embed image option in profile page --- chat.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chat.php b/chat.php index cab5484..6af38f1 100644 --- a/chat.php +++ b/chat.php @@ -2264,10 +2264,10 @@ function send_profile(string $arg=''): void 'hidechatters' => _('Hide list of chatters'), ]; if(get_setting('imgembed')){ - $bool_settings[]='embed'; + $bool_settings['embed'] = _('Embed images'); } if($U['status']>=5 && get_setting('incognito')){ - $bool_settings[]='incognito'; + $bool_settings['incognito'] = _('Incognito mode'); } foreach($bool_settings as $setting => $title){ echo "
".$title.'';