Merge pull request #13660 from nextcloud/fix/template_parameter

Fix template paramter
This commit is contained in:
Morris Jobke 2019-01-18 17:21:51 +01:00 committed by GitHub
commit e28a18ab16
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -138,7 +138,7 @@ class ClientFlowLoginController extends Controller {
$this->appName, $this->appName,
'403', '403',
[ [
'file' => $this->l10n->t('State token does not match'), 'message' => $this->l10n->t('State token does not match'),
], ],
'guest' 'guest'
); );

View file

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