diff options
author | Oliver Schramm <oliver.schramm97@gmail.com> | 2014-11-04 18:33:59 +0100 |
---|---|---|
committer | Oliver Schramm <oliver.schramm97@gmail.com> | 2014-11-04 18:33:59 +0100 |
commit | 32010de36ef81a32e17943d8b4b7a755d71ea691 (patch) | |
tree | 2a58b741e601d31432d6736c195f2fbb7b95f495 | |
parent | b32dc8c667b58e6cf6c481af734c8677d7211047 (diff) | |
download | forums-32010de36ef81a32e17943d8b4b7a755d71ea691.tar forums-32010de36ef81a32e17943d8b4b7a755d71ea691.tar.gz forums-32010de36ef81a32e17943d8b4b7a755d71ea691.tar.bz2 forums-32010de36ef81a32e17943d8b4b7a755d71ea691.tar.xz forums-32010de36ef81a32e17943d8b4b7a755d71ea691.zip |
[ticket/13284] Set message body in topic form too, so it will be sent
PHPBB3-13284
-rw-r--r-- | phpBB/phpbb/message/topic_form.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/message/topic_form.php b/phpBB/phpbb/message/topic_form.php index 1e0f2a1945..174643bb81 100644 --- a/phpBB/phpbb/message/topic_form.php +++ b/phpBB/phpbb/message/topic_form.php @@ -117,7 +117,7 @@ class topic_form extends form 'TOPIC_NAME' => htmlspecialchars_decode($this->topic_row['topic_title']), 'U_TOPIC' => generate_board_url() . '/viewtopic.' . $this->phpEx . '?f=' . $this->topic_row['forum_id'] . '&t=' . $this->topic_id, )); - + $this->message->set_body($this->body); $this->message->add_recipient( $this->recipient_name, $this->recipient_address, |