aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/posting.php
diff options
context:
space:
mode:
authorNils Adermann <naderman@naderman.de>2010-05-16 19:13:32 +0200
committerNils Adermann <naderman@naderman.de>2010-05-16 19:13:32 +0200
commitb1f9b39475030c3feee80839bccce197940145b2 (patch)
treeb45dfda9b33774798e0f3fff7773f838193aa080 /phpBB/posting.php
parentb308cfe5ea6e80f8e772345fe3d5b00c48e7193a (diff)
parentfe9c5019b672f26453df55c1a7f6bf876f56da3d (diff)
downloadforums-b1f9b39475030c3feee80839bccce197940145b2.tar
forums-b1f9b39475030c3feee80839bccce197940145b2.tar.gz
forums-b1f9b39475030c3feee80839bccce197940145b2.tar.bz2
forums-b1f9b39475030c3feee80839bccce197940145b2.tar.xz
forums-b1f9b39475030c3feee80839bccce197940145b2.zip
Merge branch 'ticket/nickvergessen/9531' into develop-olympus
* ticket/nickvergessen/9531: [ticket/9531] BBCode-less quotes fallback-option is missing "Author wrote:" line when quoting from topic-review.
Diffstat (limited to 'phpBB/posting.php')
-rw-r--r--phpBB/posting.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/posting.php b/phpBB/posting.php
index 1f593df561..df063ef391 100644
--- a/phpBB/posting.php
+++ b/phpBB/posting.php
@@ -1258,7 +1258,7 @@ if ($mode == 'quote' && !$submit && !$preview && !$refresh)
$message = $quote_string . $message;
$message = str_replace("\n", "\n" . $quote_string, $message);
- $message_parser->message = $post_data['quote_username'] . " " . $user->lang['WROTE'] . " :\n" . $message . "\n";
+ $message_parser->message = $post_data['quote_username'] . " " . $user->lang['WROTE'] . ":\n" . $message . "\n";
}
}