Reset ACL field values within form cleanup
authorjoshuaruesweg <ruesweg@woltlab.com>
Wed, 8 Sep 2021 11:53:42 +0000 (13:53 +0200)
committerjoshuaruesweg <ruesweg@woltlab.com>
Wed, 8 Sep 2021 11:53:42 +0000 (13:53 +0200)
wcfsetup/install/files/lib/system/form/builder/field/acl/AclFormField.class.php

index c741adc7769805ec37ed1a0a6411360d750b4731..0dde4882733a706c0cbd849fb23886586110b0d2 100644 (file)
@@ -165,4 +165,11 @@ class AclFormField extends AbstractFormField implements IObjectTypeFormNode {
 
                return $this;
        }
+
+       /**
+        * @inheritDoc
+        */
+       public function cleanup() {
+               ACLHandler::getInstance()->resetValues($this->getObjectType()->objectTypeID);
+       }
 }