Get correct translations for SecurityProvider

Fixes #7657

Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
This commit is contained in:
Roeland Jago Douma 2018-01-02 09:24:22 +01:00
parent ea858fcb55
commit d628341649
No known key found for this signature in database
GPG Key ID: F941078878347C0C
2 changed files with 3 additions and 3 deletions

View File

@ -53,7 +53,7 @@ class SecurityProvider implements IProvider {
throw new InvalidArgumentException();
}
$l = $this->l10n->get('core', $language);
$l = $this->l10n->get('settings', $language);
switch ($event->getSubject()) {
case 'twofactor_success':

View File

@ -87,7 +87,7 @@ class SecurityProviderTest extends TestCase {
->willReturn('security');
$this->l10n->expects($this->once())
->method('get')
->with('core', $lang)
->with('settings', $lang)
->willReturn($l);
$this->urlGenerator->expects($this->once())
->method('imagePath')
@ -119,7 +119,7 @@ class SecurityProviderTest extends TestCase {
->willReturn('security');
$this->l10n->expects($this->once())
->method('get')
->with('core', $lang)
->with('settings', $lang)
->willReturn($l);
$event->expects($this->once())
->method('getSubject')