Merge pull request #13671 from nextcloud/backport/13660/stable14

[stable14] Fix template paramter
This commit is contained in:
Roeland Jago Douma 2019-01-22 11:08:17 +01:00 committed by GitHub
commit 417997220f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View file

@ -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'
);

View file

@ -253,7 +253,7 @@ class ClientFlowLoginControllerTest extends TestCase {
'core',
'403',
[
'file' => 'State token does not match',
'message' => 'State token does not match',
],
'guest'
);
@ -272,7 +272,7 @@ class ClientFlowLoginControllerTest extends TestCase {
'core',
'403',
[
'file' => 'State token does not match',
'message' => 'State token does not match',
],
'guest'
);
@ -321,7 +321,7 @@ class ClientFlowLoginControllerTest extends TestCase {
'core',
'403',
[
'file' => 'State token does not match',
'message' => 'State token does not match',
],
'guest'
);