From d1c9f744e1904a0761a4dfaa4a6137b54984585a Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Mon, 22 Aug 2016 08:31:25 +0200 Subject: [PATCH] Move admin settings to workflow section --- apps/systemtags/appinfo/info.xml | 2 +- apps/systemtags/lib/Settings/Admin.php | 2 +- apps/systemtags/tests/Settings/AdminTest.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/systemtags/appinfo/info.xml b/apps/systemtags/appinfo/info.xml index 15b9abed0d..0a98d7ae68 100644 --- a/apps/systemtags/appinfo/info.xml +++ b/apps/systemtags/appinfo/info.xml @@ -7,7 +7,7 @@ AGPL Vincent Petry, Joas Schilling - 1.1.2 + 1.1.3 diff --git a/apps/systemtags/lib/Settings/Admin.php b/apps/systemtags/lib/Settings/Admin.php index c8d986414e..9e21dafed8 100644 --- a/apps/systemtags/lib/Settings/Admin.php +++ b/apps/systemtags/lib/Settings/Admin.php @@ -39,7 +39,7 @@ class Admin implements ISettings { * @return string the section ID, e.g. 'sharing' */ public function getSection() { - return 'additional'; + return 'workflow'; } /** diff --git a/apps/systemtags/tests/Settings/AdminTest.php b/apps/systemtags/tests/Settings/AdminTest.php index 174fd38215..d768ad8627 100644 --- a/apps/systemtags/tests/Settings/AdminTest.php +++ b/apps/systemtags/tests/Settings/AdminTest.php @@ -43,7 +43,7 @@ class AdminTest extends TestCase { } public function testGetSection() { - $this->assertSame('additional', $this->admin->getSection()); + $this->assertSame('workflow', $this->admin->getSection()); } public function testGetPriority() {