Skip to content

Commit

Permalink
Update ResetPasswordService.php
Browse files Browse the repository at this point in the history
Add rawurlencode to replaced values
  • Loading branch information
mvdstam authored Mar 13, 2024
1 parent 04bb07d commit 64a5405
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Services/ResetPasswordService.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ public function transformUrl(CanResetPassword $notifiable, string $token, string
'__EMAIL__',
'__TOKEN__',
], [
$notifiable->getEmailForPasswordReset(),
$token,
rawurlencode($notifiable->getEmailForPasswordReset()),
rawurlencode($token),
], $url);
}

Expand Down

0 comments on commit 64a5405

Please sign in to comment.