diff options
author | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2017-05-17 12:06:51 +0200 |
---|---|---|
committer | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2017-06-23 12:36:38 +0200 |
commit | 8bd887b2c6e821a5809b5e7eabc29358923c3ca7 (patch) | |
tree | 23275850f786d2ab01bc37582c0aed6a248d09a2 /lib/private/Settings/Manager.php | |
parent | 9e924d74c96f9d6545ab0d204719c8486c5c8cb7 (diff) | |
download | nextcloud-server-8bd887b2c6e821a5809b5e7eabc29358923c3ca7.tar.gz nextcloud-server-8bd887b2c6e821a5809b5e7eabc29358923c3ca7.zip |
add storage info, fix URL generation
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
Diffstat (limited to 'lib/private/Settings/Manager.php')
-rw-r--r-- | lib/private/Settings/Manager.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Settings/Manager.php b/lib/private/Settings/Manager.php index d6b3398d0fc..41db5be9740 100644 --- a/lib/private/Settings/Manager.php +++ b/lib/private/Settings/Manager.php @@ -368,7 +368,7 @@ class Manager implements IManager { try { if ($section === 'personal-info') { /** @var ISettings $form */ - $form = new Personal\PersonalInfo($this->config, $this->userManager, $this->groupManager, $this->accountManager, $this->l10nFactory, $this->defaults); + $form = new Personal\PersonalInfo($this->config, $this->userManager, $this->groupManager, $this->accountManager, $this->l10nFactory, $this->defaults, $this->l); $forms[$form->getPriority()] = [$form]; } } catch (QueryException $e) { |