Skip to content

Commit 4099aed

Browse files
committed
Merge branch '3.0' into develop
2 parents 3b46ede + 49f6f88 commit 4099aed

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -348,8 +348,6 @@ Edit the `app\Http\Controllers\Auth\RegisterController.php` file.
348348
- [ ] Overwrite and customize the redirect attributes/properties paths
349349
available within the `RedirectsUsers` trait included by the
350350
`VerifiesUsers` trait. (not mandatory)
351-
- [x] Create the verification error view at
352-
`resources/views/errors/user-verification.blade.php` (mandatory)
353351
- [ ] Overwrite the contructor (not mandatory)
354352
- [x] Overwrite the `register()` method (mandatory)
355353

src/UserVerification.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ protected function getUserByEmail($email, $table)
245245
{
246246
$user = DB::table($table)
247247
->where('email', $email)
248-
->first(['id', 'email', 'verified', 'verification_token']);
248+
->first();
249249

250250
if ($user === null) {
251251
throw new UserNotFoundException();

0 commit comments

Comments
 (0)