|
|
Re: NNTP Import Subject with Non-Ascii Characters |
Mon, 02 May 2011 12:50 |
|
Got it. Thanks for the mail. Here is the patch against nntp.php:
@@ -260,7 +260,7 @@
}
fud_wordwrap($msg_post->body);
- $msg_post->subject = htmlspecialchars(apply_custom_replace($emsg->subject));
+ $msg_post->subject = apply_custom_replace($emsg->subject);
if (!strlen($msg_post->subject)) {
log_script_error('Blank subject', $emsg->raw_msg);
$msg_post->subject = '(no subject)';
|
|
|
|
|