diff options
| author | Joas Schilling <nickvergessen@gmx.de> | 2014-11-21 23:10:00 +0100 |
|---|---|---|
| committer | Joas Schilling <nickvergessen@gmx.de> | 2014-11-21 23:10:00 +0100 |
| commit | 0017fad554ca5dd1ad6ba6910bb12152b99fcbd3 (patch) | |
| tree | 857ec649d3015275e097b20b1b4f7a7befe805b1 | |
| parent | c98cceaf22bc9bb2396fc3682dc78cfec76dfd65 (diff) | |
| parent | 32010de36ef81a32e17943d8b4b7a755d71ea691 (diff) | |
| download | forums-0017fad554ca5dd1ad6ba6910bb12152b99fcbd3.tar forums-0017fad554ca5dd1ad6ba6910bb12152b99fcbd3.tar.gz forums-0017fad554ca5dd1ad6ba6910bb12152b99fcbd3.tar.bz2 forums-0017fad554ca5dd1ad6ba6910bb12152b99fcbd3.tar.xz forums-0017fad554ca5dd1ad6ba6910bb12152b99fcbd3.zip | |
Merge pull request #3108 from Elsensee/ticket/13284
[ticket/13284] Message body not included in email
| -rw-r--r-- | phpBB/language/en/memberlist.php | 2 | ||||
| -rw-r--r-- | phpBB/phpbb/message/topic_form.php | 2 | ||||
| -rw-r--r-- | phpBB/styles/prosilver/template/memberlist_email.html | 2 | ||||
| -rw-r--r-- | phpBB/styles/subsilver2/template/memberlist_email.html | 4 |
4 files changed, 5 insertions, 5 deletions
diff --git a/phpBB/language/en/memberlist.php b/phpBB/language/en/memberlist.php index b8c626d331..5605f8f4b5 100644 --- a/phpBB/language/en/memberlist.php +++ b/phpBB/language/en/memberlist.php @@ -48,7 +48,7 @@ $lang = array_merge($lang, array( 'BEFORE' => 'Before', - 'CC_EMAIL' => 'Send a copy of this email to yourself.', + 'CC_SENDER' => 'Send a copy of this email to yourself.', 'CONTACT_ADMIN' => 'Contact a Board Administrator', 'DEST_LANG' => 'Language', 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, diff --git a/phpBB/styles/prosilver/template/memberlist_email.html b/phpBB/styles/prosilver/template/memberlist_email.html index e848844093..1bfd83e3a1 100644 --- a/phpBB/styles/prosilver/template/memberlist_email.html +++ b/phpBB/styles/prosilver/template/memberlist_email.html @@ -80,7 +80,7 @@ <!-- IF S_REGISTERED_USER --> <dl> <dt> </dt> - <dd><label for="cc_email"><input type="checkbox" name="cc_email" id="cc_email" value="1" checked="checked" tabindex="5" /> {L_CC_EMAIL}</label></dd> + <dd><label for="cc_sender"><input type="checkbox" name="cc_sender" id="cc_sender" value="1" checked="checked" tabindex="5" /> {L_CC_SENDER}</label></dd> </dl> <!-- ENDIF --> </fieldset> diff --git a/phpBB/styles/subsilver2/template/memberlist_email.html b/phpBB/styles/subsilver2/template/memberlist_email.html index b52513c241..1416aa0c10 100644 --- a/phpBB/styles/subsilver2/template/memberlist_email.html +++ b/phpBB/styles/subsilver2/template/memberlist_email.html @@ -72,8 +72,8 @@ <td class="row2"> <table cellspacing="0" cellpadding="1" border="0"> <tr> - <td><input type="checkbox" class="radio" name="cc_email" value="1" checked="checked" /></td> - <td class="gen">{L_CC_EMAIL}</td> + <td><input type="checkbox" class="radio" name="cc_sender" value="1" checked="checked" /></td> + <td class="gen">{L_CC_SENDER}</td> </tr> </table> </td> |
