diff options
author | Nathan Guse <nathaniel.guse@gmail.com> | 2013-04-24 15:34:12 -0500 |
---|---|---|
committer | Nathan Guse <nathaniel.guse@gmail.com> | 2013-04-24 15:34:12 -0500 |
commit | fcdfe748b89426ed9d29c9e589fc5b98ed53a797 (patch) | |
tree | b56e09d514d0c78c3297f8acf06c2f9fe2ecb46c /phpBB/includes/ucp/ucp_activate.php | |
parent | ebb5169a463db9a2e7c552abf87eaf1ac8d086a2 (diff) | |
download | forums-fcdfe748b89426ed9d29c9e589fc5b98ed53a797.tar forums-fcdfe748b89426ed9d29c9e589fc5b98ed53a797.tar.gz forums-fcdfe748b89426ed9d29c9e589fc5b98ed53a797.tar.bz2 forums-fcdfe748b89426ed9d29c9e589fc5b98ed53a797.tar.xz forums-fcdfe748b89426ed9d29c9e589fc5b98ed53a797.zip |
[ticket/11454] Use set_addresses in other applicable areas
This should fix some other bugs that may not have yet been recognized--some
areas only set to(), but sent according to user_notify_type, which is not
necessarily email.
PHPBB3-11454
Diffstat (limited to 'phpBB/includes/ucp/ucp_activate.php')
-rw-r--r-- | phpBB/includes/ucp/ucp_activate.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/ucp/ucp_activate.php b/phpBB/includes/ucp/ucp_activate.php index 577761dfde..898dacd831 100644 --- a/phpBB/includes/ucp/ucp_activate.php +++ b/phpBB/includes/ucp/ucp_activate.php @@ -114,7 +114,7 @@ class ucp_activate $messenger->template('admin_welcome_activated', $user_row['user_lang']); - $messenger->to($user_row['user_email'], $user_row['username']); + $messenger->set_addresses($user_row); $messenger->anti_abuse_headers($config, $user); |