From 6c8e4e6204b13e12da2583116292ec35d513dbba Mon Sep 17 00:00:00 2001 From: Greg Roach Date: Fri, 18 Aug 2023 17:21:00 +0100 Subject: [PATCH] Fix: #4868 - add rel=nofollow to contact links --- app/Services/UserService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Services/UserService.php b/app/Services/UserService.php index 24889818e17..7a0280f1d9b 100644 --- a/app/Services/UserService.php +++ b/app/Services/UserService.php @@ -413,6 +413,6 @@ public function contactLink(User $contact_user, ServerRequestInterface $request) ]); } - return '' . e($contact_user->realName()) . ''; + return '' . e($contact_user->realName()) . ''; } }