diff options
author | Wesley Fok <wesley.fok@yp.ca> | 2016-08-15 15:20:23 -0400 |
---|---|---|
committer | Wesley Fok <wesley.fok@yp.ca> | 2016-08-15 15:20:23 -0400 |
commit | f68e98c06450fd46feea64ce29e11ddd04333b68 (patch) | |
tree | 75fbff73f389b80862a8bba59a50f0ffa66c2e0d | |
parent | f68820762b2d78bc26c59724a3dd98091bb3379b (diff) | |
download | forums-f68e98c06450fd46feea64ce29e11ddd04333b68.tar forums-f68e98c06450fd46feea64ce29e11ddd04333b68.tar.gz forums-f68e98c06450fd46feea64ce29e11ddd04333b68.tar.bz2 forums-f68e98c06450fd46feea64ce29e11ddd04333b68.tar.xz forums-f68e98c06450fd46feea64ce29e11ddd04333b68.zip |
[ticket/14745] Removed unneeded HTML ampersand
Changed the HTML ampersand entity in U_NOTIFICATION_SETTINGS into a bare
ampersand character.
PHPBB3-14745
-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 3c6d617c66..0bfbfd6b02 100644 --- a/phpBB/phpbb/notification/method/messenger_base.php +++ b/phpBB/phpbb/notification/method/messenger_base.php @@ -81,7 +81,7 @@ abstract class messenger_base extends \phpbb\notification\method\base $messenger->assign_vars(array_merge(array( 'USERNAME' => $user['username'], - 'U_NOTIFICATION_SETTINGS' => generate_board_url() . '/ucp.' . $this->php_ext . '?i=ucp_notifications&mode=notification_options', + 'U_NOTIFICATION_SETTINGS' => generate_board_url() . '/ucp.' . $this->php_ext . '?i=ucp_notifications&mode=notification_options', ), $notification->get_email_template_variables())); $messenger->send($notify_method); |