Browse Source
Use the l10n from settings
Fixes #19261
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
pull/19268/head
Roeland Jago Douma
6 years ago
No known key found for this signature in database
GPG Key ID: F941078878347C0C
1 changed files with
2 additions and
2 deletions
-
apps/settings/lib/Settings/Admin/Sharing.php
|
|
|
@ -52,9 +52,9 @@ class Sharing implements ISettings { |
|
|
|
/** |
|
|
|
* @param IConfig $config |
|
|
|
*/ |
|
|
|
public function __construct(IConfig $config, IFactory $l, IManager $shareManager) { |
|
|
|
public function __construct(IConfig $config, IL10N $l, IManager $shareManager) { |
|
|
|
$this->config = $config; |
|
|
|
$this->l = $l->get('lib'); |
|
|
|
$this->l = $l; |
|
|
|
$this->shareManager = $shareManager; |
|
|
|
} |
|
|
|
|
|
|
|
|