summaryrefslogtreecommitdiff
path: root/src/PhpBB3Impl.php
diff options
context:
space:
mode:
authorJoel Uckelman <uckelman@nomic.net>2012-03-01 03:35:38 +0100
committerJoel Uckelman <uckelman@nomic.net>2012-03-01 03:35:38 +0100
commitbd8187cbbbd09b5c47ad31c74023597c8005f7d6 (patch)
treeade8bccc447c877bbfd996c3b07b73a1d235c6f6 /src/PhpBB3Impl.php
parent39ed0e2ce2abd2377552ea5af36fa25cf1b66a3f (diff)
build_post should prepend Re: for replies.
Diffstat (limited to 'src/PhpBB3Impl.php')
-rw-r--r--src/PhpBB3Impl.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/PhpBB3Impl.php b/src/PhpBB3Impl.php
index 59f052f..7e8595a 100644
--- a/src/PhpBB3Impl.php
+++ b/src/PhpBB3Impl.php
@@ -206,7 +206,7 @@ class PhpBB3Impl implements PhpBB3 {
$listTag = '[messages]';
$forumName = $this->getForumName($forumId);
$forumTag = '[' . html_entity_decode($forumName, ENT_QUOTES) . ']';
- $subject = build_post_subject($listTag, $forumTag, $subject);
+ $subject = build_post_subject($listTag, $forumTag, $subject, $postType == 'reply');
list($message, $attachments) = $msg->getFlattenedParts();