diff --git a/apps/systemtags/lib/Settings/Admin.php b/apps/systemtags/lib/Settings/Admin.php index 2d892f17f1..30ff403084 100644 --- a/apps/systemtags/lib/Settings/Admin.php +++ b/apps/systemtags/lib/Settings/Admin.php @@ -40,7 +40,7 @@ class Admin implements ISettings { * @return string the section ID, e.g. 'sharing' */ public function getSection() { - return 'workflow'; + return 'server'; } /** diff --git a/apps/systemtags/tests/Settings/AdminTest.php b/apps/systemtags/tests/Settings/AdminTest.php index 8b0472f2e9..6e23ab5f7b 100644 --- a/apps/systemtags/tests/Settings/AdminTest.php +++ b/apps/systemtags/tests/Settings/AdminTest.php @@ -44,7 +44,7 @@ class AdminTest extends TestCase { } public function testGetSection() { - $this->assertSame('workflow', $this->admin->getSection()); + $this->assertSame('server', $this->admin->getSection()); } public function testGetPriority() {