diff --git a/lam/lib/modules/windowsPosixGroup.inc b/lam/lib/modules/windowsPosixGroup.inc index e75d058e..3424d313 100644 --- a/lam/lib/modules/windowsPosixGroup.inc +++ b/lam/lib/modules/windowsPosixGroup.inc @@ -43,8 +43,6 @@ class windowsPosixGroup extends posixGroup { * @param string $scope account type (user, group, host) */ public function __construct($scope) { - // call parent constructor - parent::__construct($scope); // do not manage cn and description (managed by windowsGroup) $this->manageCnAttribute = false; $this->manageDescriptionAttribute = false; @@ -52,6 +50,8 @@ class windowsPosixGroup extends posixGroup { $this->passwordAttrName = 'unixUserPassword'; // make optional $this->autoAddObjectClasses = false; + // call parent constructor + parent::__construct($scope); } /**