aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2019-07-27 14:30:35 +0200
committerMarc Alexander <admin@m-a-styles.de>2019-07-27 14:30:35 +0200
commitb12405dbc7dc7bfaa6739aad1c0d028b4eae4052 (patch)
treea64be0fbe986faea81b55872f545e78e37f5984a
parent33be961aa0ce0aaa212705fc6ae799379dda5b4d (diff)
parent978d1976b04264fcb1518e84d51450c96e548694 (diff)
downloadforums-b12405dbc7dc7bfaa6739aad1c0d028b4eae4052.tar
forums-b12405dbc7dc7bfaa6739aad1c0d028b4eae4052.tar.gz
forums-b12405dbc7dc7bfaa6739aad1c0d028b4eae4052.tar.bz2
forums-b12405dbc7dc7bfaa6739aad1c0d028b4eae4052.tar.xz
forums-b12405dbc7dc7bfaa6739aad1c0d028b4eae4052.zip
Merge branch '3.2.x' into 3.3.x
-rw-r--r--phpBB/posting.php14
1 files changed, 14 insertions, 0 deletions
diff --git a/phpBB/posting.php b/phpBB/posting.php
index 28e66f7f44..e4ba0303cc 100644
--- a/phpBB/posting.php
+++ b/phpBB/posting.php
@@ -1690,6 +1690,20 @@ if ($generate_quote)
if (($mode == 'reply' || $mode == 'quote') && !$submit && !$preview && !$refresh)
{
$post_data['post_subject'] = ((strpos($post_data['post_subject'], 'Re: ') !== 0) ? 'Re: ' : '') . censor_text($post_data['post_subject']);
+
+ $post_subject = $post_data['post_subject'];
+
+ /**
+ * This event allows you to modify the post subject of the post being quoted
+ *
+ * @event core.posting_modify_post_subject
+ * @var string post_subject String with the post subject already censored.
+ * @since 3.2.8-RC1
+ */
+ $vars = array('post_subject');
+ extract($phpbb_dispatcher->trigger_event('core.posting_modify_post_subject', compact($vars)));
+
+ $post_data['post_subject'] = $post_subject;
}
$attachment_data = $message_parser->attachment_data;