From 9b26a9efeee5742ea219eac6dd225e5d2fc2890c Mon Sep 17 00:00:00 2001 From: Retro_Guy Date: Tue, 2 May 2023 23:49:35 -0700 Subject: [PATCH] Fix line in post.inc.php that caused an issue with x-face usage. --- Rocksolid_Light/rocksolid/lib/post.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rocksolid_Light/rocksolid/lib/post.inc.php b/Rocksolid_Light/rocksolid/lib/post.inc.php index 809c6ed..c6aefae 100755 --- a/Rocksolid_Light/rocksolid/lib/post.inc.php +++ b/Rocksolid_Light/rocksolid/lib/post.inc.php @@ -299,7 +299,7 @@ function message_post($subject,$from,$newsgroups,$ref,$body,$encryptthis=null,$e } fputs($ns,'Message-ID: '.$msgid."\r\n"); if ($userconfig['xface'] !== '' && $myconfig) { - fputs($ns,'X-Face: '.$userconfig[xface]."\r\n"); + fputs($ns,'X-Face: '.$userconfig['xface']."\r\n"); } $body=str_replace("\n.\r","\n..\r",$body); $body=str_replace("\r",'',$body);