Fixed small issue
authorMarcel Werk <burntime@woltlab.com>
Sat, 24 May 2014 11:31:36 +0000 (13:31 +0200)
committerMarcel Werk <burntime@woltlab.com>
Sat, 24 May 2014 11:31:36 +0000 (13:31 +0200)
wcfsetup/install/files/lib/data/user/group/UserGroup.class.php

index 164686817595eba3a03558ac7fa61ca6a3e536c4..f358ffcdbf0778fffd73eca8e0c96481c0f53cc1 100644 (file)
@@ -221,7 +221,7 @@ class UserGroup extends DatabaseObject {
         */
        public function isModGroup() {
                // workaround for WCF-Setup
-               if (!PACKAGE_ID && $this->groupID == 5) return true;
+               if (!PACKAGE_ID && ($this->groupID == 5 || $this->groupID == 4)) return true;
                
                return $this->getGroupOption('mod.general.canUseModeration');
        }