From 7ffca76c617a0b07ba7b442a4640575d5f579823 Mon Sep 17 00:00:00 2001 From: Franz Liedke Date: Sun, 9 Dec 2018 23:17:04 +0100 Subject: [PATCH] Fix incorrect column name for registration token Oversight from the database renamings, I suppose. Fixes #1691. --- framework/core/src/Forum/Auth/ResponseFactory.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/core/src/Forum/Auth/ResponseFactory.php b/framework/core/src/Forum/Auth/ResponseFactory.php index 37eb5e9cc..6bcc581fd 100644 --- a/framework/core/src/Forum/Auth/ResponseFactory.php +++ b/framework/core/src/Forum/Auth/ResponseFactory.php @@ -56,7 +56,7 @@ class ResponseFactory $provided, $registration->getSuggested(), [ - 'token' => $token->id, + 'token' => $token->token, 'provided' => array_keys($provided) ] ));