Fix line in post.inc.php that caused an issue with x-face usage.

This commit is contained in:
Retro_Guy 2023-05-02 23:49:35 -07:00
parent 05bce02b19
commit 9b26a9efee
1 changed files with 1 additions and 1 deletions

View File

@ -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);