diff options
author | Martin Beckmann <gn#36@phpbb.de> | 2016-02-01 23:11:39 +0100 |
---|---|---|
committer | Martin Beckmann <gn#36@phpbb.de> | 2016-02-01 23:11:39 +0100 |
commit | fdd5a1876388e20b8b79f39bdc6e63c1ce964a91 (patch) | |
tree | 1208073443aaa85d21d477fcafcd4a02542df03a /phpBB/phpbb/notification | |
parent | 89a34ff033b4b2cc854c79556bb75cd235c86509 (diff) | |
download | forums-fdd5a1876388e20b8b79f39bdc6e63c1ce964a91.tar forums-fdd5a1876388e20b8b79f39bdc6e63c1ce964a91.tar.gz forums-fdd5a1876388e20b8b79f39bdc6e63c1ce964a91.tar.bz2 forums-fdd5a1876388e20b8b79f39bdc6e63c1ce964a91.tar.xz forums-fdd5a1876388e20b8b79f39bdc6e63c1ce964a91.zip |
[ticket/14443] Introduce additional parameter to messenger
PHPBB3-14443
Diffstat (limited to 'phpBB/phpbb/notification')
-rw-r--r-- | phpBB/phpbb/notification/method/messenger_base.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/notification/method/messenger_base.php b/phpBB/phpbb/notification/method/messenger_base.php index c3aee088f9..5ae96282c4 100644 --- a/phpBB/phpbb/notification/method/messenger_base.php +++ b/phpBB/phpbb/notification/method/messenger_base.php @@ -74,7 +74,7 @@ abstract class messenger_base extends \phpbb\notification\method\base continue; } - $messenger->template($template_dir_prefix . $notification->get_email_template(), $user['user_lang']); + $messenger->template($notification->get_email_template(), $user['user_lang'], '', $template_dir_prefix); $messenger->set_addresses($user); |