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 13ce2d1e3d
commit 7ffca76c61

View File

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