Skip to content

Commit 0e4292c

Browse files
vv12131415taylorotwell
authored andcommitted
- added token as explicit param (#26872)
1 parent d4de66f commit 0e4292c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Illuminate/Auth/Notifications/ResetPassword.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public function toMail($notifiable)
5959
return (new MailMessage)
6060
->subject(Lang::getFromJson('Reset Password Notification'))
6161
->line(Lang::getFromJson('You are receiving this email because we received a password reset request for your account.'))
62-
->action(Lang::getFromJson('Reset Password'), url(config('app.url').route('password.reset', $this->token, false)))
62+
->action(Lang::getFromJson('Reset Password'), url(config('app.url').route('password.reset', ['token' => $this->token], false)))
6363
->line(Lang::getFromJson('If you did not request a password reset, no further action is required.'));
6464
}
6565

0 commit comments

Comments
 (0)