1
0
mirror of https://github.com/flarum/core.git synced 2025-04-21 15:42:04 +02:00

Fix incorrect column name for registration token

Oversight from the database renamings, I suppose.

Fixes #1691.
This commit is contained in:
Franz Liedke 2018-12-09 23:17:04 +01:00
parent 0d16fac001
commit 67f9375d47
No known key found for this signature in database
GPG Key ID: 9A0231A879B055F4

View File

@ -56,7 +56,7 @@ class ResponseFactory
$provided,
$registration->getSuggested(),
[
'token' => $token->id,
'token' => $token->token,
'provided' => array_keys($provided)
]
));