From 1b7b34431b7f26937503cc2ce3667b3e9692947b Mon Sep 17 00:00:00 2001 From: "florian.azizian" <florian.azizian@maarch.org> Date: Fri, 19 Mar 2021 09:48:07 +0100 Subject: [PATCH] FEAT #16626 TIME 0:10 notification new account : Make link clickable --- src/core/controllers/AuthenticationController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/controllers/AuthenticationController.php b/src/core/controllers/AuthenticationController.php index 65e0f8a941..fd2c637f35 100755 --- a/src/core/controllers/AuthenticationController.php +++ b/src/core/controllers/AuthenticationController.php @@ -332,7 +332,7 @@ class AuthenticationController 'sender' => 'Notification', 'recipients' => [$args['userEmail']], 'subject' => $lang['notificationNewAccountSubject'], - 'body' => $lang['notificationNewAccountBody'] . $url . $lang['notificationNewAccountId'] . ' ' . $user['login'] . $lang['notificationNewAccountFooter'], + 'body' => $lang['notificationNewAccountBody'] . '<a href="' . $url . '">'.$url.'</a>' . $lang['notificationNewAccountId'] . ' ' . $user['login'] . $lang['notificationNewAccountFooter'], 'isHtml' => true ] ]); -- GitLab