diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2018-10-08 10:22:27 +0200 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2018-10-08 10:31:51 +0200 |
commit | 5d2fdfe0b5214bd35bc9842cb6aa53f70aff125d (patch) | |
tree | 463a8d8d2bea4666945e028fafedf1e9072a062b /lib/private/Settings | |
parent | 80f7add485b4e55d6d3b19cee12231e13bd4ff62 (diff) | |
download | nextcloud-server-5d2fdfe0b5214bd35bc9842cb6aa53f70aff125d.tar.gz nextcloud-server-5d2fdfe0b5214bd35bc9842cb6aa53f70aff125d.zip |
Rename admin security section
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'lib/private/Settings')
-rw-r--r-- | lib/private/Settings/Admin/Security.php (renamed from lib/private/Settings/Admin/Encryption.php) | 2 | ||||
-rw-r--r-- | lib/private/Settings/Manager.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/Settings/Admin/Encryption.php b/lib/private/Settings/Admin/Security.php index 65f507154ad..8475e3d8995 100644 --- a/lib/private/Settings/Admin/Encryption.php +++ b/lib/private/Settings/Admin/Security.php @@ -30,7 +30,7 @@ use OCP\Encryption\IManager; use OCP\IUserManager; use OCP\Settings\ISettings; -class Encryption implements ISettings { +class Security implements ISettings { /** @var IManager */ private $manager; diff --git a/lib/private/Settings/Manager.php b/lib/private/Settings/Manager.php index 48883582ef4..036f1ed594f 100644 --- a/lib/private/Settings/Manager.php +++ b/lib/private/Settings/Manager.php @@ -234,7 +234,7 @@ class Manager implements IManager { } if ($section === 'security') { /** @var ISettings $form */ - $form = $this->container->query(Admin\Encryption::class); + $form = $this->container->query(Admin\Security::class); $forms[$form->getPriority()] = [$form]; } if ($section === 'sharing') { |