fixed password setting for AD

This commit is contained in:
Roland Gruber 2013-12-26 11:06:11 +00:00
parent b7a675c950
commit f56b723e60
1 changed files with 2 additions and 2 deletions

View File

@ -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);
}
/**