Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/private/Settings/Manager.php2
-rw-r--r--tests/lib/Settings/ManagerTest.php6
2 files changed, 4 insertions, 4 deletions
diff --git a/lib/private/Settings/Manager.php b/lib/private/Settings/Manager.php
index a5ffa9e0f1e..1205cb81525 100644
--- a/lib/private/Settings/Manager.php
+++ b/lib/private/Settings/Manager.php
@@ -348,7 +348,7 @@ class Manager implements IManager {
}
$sections = [
- 0 => [new Section('personal-info', $this->l->t('Personal info'), 0, $this->url->imagePath('core', 'actions/info.svg'))],
+ 0 => [new Section('personal-info', $this->l->t('Personal info'), 0, $this->url->imagePath('core', 'actions/user.svg'))],
5 => [new Section('security', $this->l->t('Security'), 0, $this->url->imagePath('settings', 'password.svg'))],
15 => [new Section('sync-clients', $this->l->t('Mobile & desktop'), 0, $this->url->imagePath('core', 'clients/phone.svg'))],
];
diff --git a/tests/lib/Settings/ManagerTest.php b/tests/lib/Settings/ManagerTest.php
index 8d1c9f768e8..3339c50c4d2 100644
--- a/tests/lib/Settings/ManagerTest.php
+++ b/tests/lib/Settings/ManagerTest.php
@@ -119,7 +119,7 @@ class ManagerTest extends TestCase {
$this->url->expects($this->exactly(3))
->method('imagePath')
->willReturnMap([
- ['core', 'actions/info.svg', '1'],
+ ['core', 'actions/user.svg', '1'],
['settings', 'password.svg', '2'],
['core', 'clients/phone.svg', '3'],
]);
@@ -178,7 +178,7 @@ class ManagerTest extends TestCase {
$this->url->expects($this->exactly(3))
->method('imagePath')
->willReturnMap([
- ['core', 'actions/info.svg', '1'],
+ ['core', 'actions/user.svg', '1'],
['settings', 'password.svg', '2'],
['core', 'clients/phone.svg', '3'],
]);
@@ -279,7 +279,7 @@ class ManagerTest extends TestCase {
$this->url->expects($this->exactly(9))
->method('imagePath')
->willReturnMap([
- ['core', 'actions/info.svg', '1'],
+ ['core', 'actions/user.svg', '1'],
['settings', 'password.svg', '2'],
['core', 'clients/phone.svg', '3'],
['settings', 'admin.svg', '0'],