mirror of
https://github.com/nextcloud/server.git
synced 2026-06-11 09:42:09 -04:00
Fix template paramter
Else we get shown an error page instead of the correct 403. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
This commit is contained in:
parent
3037e26948
commit
16966ee5aa
2 changed files with 2 additions and 2 deletions
|
|
@ -138,7 +138,7 @@ class ClientFlowLoginController extends Controller {
|
|||
$this->appName,
|
||||
'403',
|
||||
[
|
||||
'file' => $this->l10n->t('State token does not match'),
|
||||
'message' => $this->l10n->t('State token does not match'),
|
||||
],
|
||||
'guest'
|
||||
);
|
||||
|
|
|
|||
|
|
@ -257,7 +257,7 @@ class ClientFlowLoginControllerTest extends TestCase {
|
|||
'core',
|
||||
'403',
|
||||
[
|
||||
'file' => 'State token does not match',
|
||||
'message' => 'State token does not match',
|
||||
],
|
||||
'guest'
|
||||
);
|
||||
|
|
|
|||
Loading…
Reference in a new issue