summaryrefslogtreecommitdiffstats
path: root/core/Controller
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2019-01-18 09:17:26 +0100
committerBackportbot <backportbot-noreply@rullzer.com>2019-01-18 18:43:45 +0000
commit16966ee5aa12e2d28714d00f81403c77ee3afda7 (patch)
tree9d1c5251c1c1e8c69b204c7045dccb9253528b27 /core/Controller
parent3037e269488b453103b531a79d5a2e57e1c5406a (diff)
downloadnextcloud-server-16966ee5aa12e2d28714d00f81403c77ee3afda7.tar.gz
nextcloud-server-16966ee5aa12e2d28714d00f81403c77ee3afda7.zip
Fix template paramter
Else we get shown an error page instead of the correct 403. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'core/Controller')
-rw-r--r--core/Controller/ClientFlowLoginController.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Controller/ClientFlowLoginController.php b/core/Controller/ClientFlowLoginController.php
index c00a720ac57..b58f56194c7 100644
--- a/core/Controller/ClientFlowLoginController.php
+++ b/core/Controller/ClientFlowLoginController.php
@@ -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'
);