From f68e98c06450fd46feea64ce29e11ddd04333b68 Mon Sep 17 00:00:00 2001 From: Wesley Fok Date: Mon, 15 Aug 2016 15:20:23 -0400 Subject: [PATCH] [ticket/14745] Removed unneeded HTML ampersand Changed the HTML ampersand entity in U_NOTIFICATION_SETTINGS into a bare ampersand character. PHPBB3-14745 --- phpBB/phpbb/notification/method/messenger_base.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);