From 0bc7588e5df6fa871208bcfd91b3b6f3f8ae1a80 Mon Sep 17 00:00:00 2001 From: Henning <leutz@pcsg.de> Date: Mon, 10 Feb 2025 14:11:42 +0100 Subject: [PATCH] fix: update confirmation link in delete user In `src/QUI/FrontendUsers/Handler.php`, the 'confirmLink' value has been updated to use the `getVerificationUrl()` method from its `verification` object. This ensures the correct verification URL is passed when sending a 'delete user' confirmation email. --- src/QUI/FrontendUsers/Handler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/QUI/FrontendUsers/Handler.php b/src/QUI/FrontendUsers/Handler.php index 18f13b1..276ea43 100644 --- a/src/QUI/FrontendUsers/Handler.php +++ b/src/QUI/FrontendUsers/Handler.php @@ -767,7 +767,7 @@ public function sendDeleteUserConfirmationMail(QUI\Interfaces\Users\User $User, 'userFirstName' => $User->getAttribute('firstname') ?: '', 'userLastName' => $User->getAttribute('lastname') ?: '', 'date' => $L->formatDate(time()), - 'confirmLink' => $verification + 'confirmLink' => $verification->getVerificationUrl() ]) ] ); -- GitLab