From: Pierre Habouzit (MadCoder Date: Wed, 19 Oct 2005 17:09:24 +0000 (+0000) Subject: fix wrt Re: X-Git-Tag: 1.8~296 X-Git-Url: http://git.polytechnique.org/?a=commitdiff_plain;h=1bfa59fec934680af89bc692c381a1c703ba60d0;p=banana.git fix wrt Re: git-archimport-id: opensource@polytechnique.org--2005/banana--mainline--1.0--patch-28 --- diff --git a/banana/banana.inc.php.in b/banana/banana.inc.php.in index 8cd704f..b188c52 100644 --- a/banana/banana.inc.php.in +++ b/banana/banana.inc.php.in @@ -218,7 +218,7 @@ class Banana $this->nntp->group($group); $this->_newPost($id); if ($this->post) { - $subject = preg_replace("/^re\s*:\s*/i", 'Re: ', $this->post->headers['subject']); + $subject = preg_replace("/^re\s*:\s*/i", 'Re: ', 'Re: '.$this->post->headers['subject']); $body = utf8_encode($this->post->name." "._b_("a écrit"))." :\n".wrap($this->post->body, "> "); $target = isset($this->post->headers['followup-to']) ? $this->post->headers['followup-to'] : $this->post->headers['newsgroups']; }