]> source.dussan.org Git - nextcloud-server.git/commitdiff
System tags are not sharing but workflow
authorJoas Schilling <coding@schilljs.com>
Fri, 19 Aug 2016 08:33:41 +0000 (10:33 +0200)
committerJoas Schilling <coding@schilljs.com>
Fri, 19 Aug 2016 10:23:05 +0000 (12:23 +0200)
apps/systemtags/appinfo/info.xml
apps/systemtags/lib/Settings/Admin.php
apps/systemtags/tests/Settings/AdminTest.php

index 46bb927883850fa0fab857930c725b97fc6b5a81..15b9abed0d490180fb0da4eda4c7e7aa2815cd2e 100644 (file)
@@ -7,7 +7,7 @@
        <licence>AGPL</licence>
        <author>Vincent Petry, Joas Schilling</author>
        <default_enable/>
-       <version>1.1.1</version>
+       <version>1.1.2</version>
        <dependencies>
                <owncloud min-version="9.2" max-version="9.2" />
        </dependencies>
index fbdec8741f7846b365aa665a2049ae35f272fd67..c8d986414e6cca74a74f7c1aa5980fe289637beb 100644 (file)
@@ -39,7 +39,7 @@ class Admin implements ISettings {
         * @return string the section ID, e.g. 'sharing'
         */
        public function getSection() {
-               return 'sharing';
+               return 'additional';
        }
 
        /**
index b1faf82cf25b087ca400a33b89ffbef4cf36b2e3..174fd382159c414c4be274883b6ccbdb757a9866 100644 (file)
@@ -43,7 +43,7 @@ class AdminTest extends TestCase {
        }
 
        public function testGetSection() {
-               $this->assertSame('sharing', $this->admin->getSection());
+               $this->assertSame('additional', $this->admin->getSection());
        }
 
        public function testGetPriority() {