summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2016-08-22 08:31:25 +0200
committerJoas Schilling <coding@schilljs.com>2016-08-22 08:35:03 +0200
commitd1c9f744e1904a0761a4dfaa4a6137b54984585a (patch)
tree4ba75c633d0a915e2bb5f2497db33ec1c30beb82 /apps
parentbaa91809bd11a78a53c8b39e6b2f73ff41b7f925 (diff)
downloadnextcloud-server-d1c9f744e1904a0761a4dfaa4a6137b54984585a.tar.gz
nextcloud-server-d1c9f744e1904a0761a4dfaa4a6137b54984585a.zip
Move admin settings to workflow section
Diffstat (limited to 'apps')
-rw-r--r--apps/systemtags/appinfo/info.xml2
-rw-r--r--apps/systemtags/lib/Settings/Admin.php2
-rw-r--r--apps/systemtags/tests/Settings/AdminTest.php2
3 files changed, 3 insertions, 3 deletions
diff --git a/apps/systemtags/appinfo/info.xml b/apps/systemtags/appinfo/info.xml
index 15b9abed0d4..0a98d7ae680 100644
--- a/apps/systemtags/appinfo/info.xml
+++ b/apps/systemtags/appinfo/info.xml
@@ -7,7 +7,7 @@
<licence>AGPL</licence>
<author>Vincent Petry, Joas Schilling</author>
<default_enable/>
- <version>1.1.2</version>
+ <version>1.1.3</version>
<dependencies>
<owncloud min-version="9.2" max-version="9.2" />
</dependencies>
diff --git a/apps/systemtags/lib/Settings/Admin.php b/apps/systemtags/lib/Settings/Admin.php
index c8d986414e6..9e21dafed8b 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 174fd382159..d768ad86272 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() {