From f56b723e6063afba0da9a4beff4a169621bc179e Mon Sep 17 00:00:00 2001 From: Roland Gruber Date: Thu, 26 Dec 2013 11:06:11 +0000 Subject: [PATCH] fixed password setting for AD --- lam/lib/modules/windowsPosixGroup.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); } /**