summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 6381e02)
raw | patch | inline | side by side (parent: 6381e02)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 5 May 2010 10:04:55 +0000 (10:04 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 5 May 2010 10:04:55 +0000 (10:04 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@18135 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-plugins/samba/personal/samba/class_sambaAccount.inc | patch | blob | history |
diff --git a/gosa-plugins/samba/personal/samba/class_sambaAccount.inc b/gosa-plugins/samba/personal/samba/class_sambaAccount.inc
index 286e26de661bbdf9b3c50d119482dd0a46af6d2f..0aa698b888e0a7585e01431de62b4cb2ee909776 100644 (file)
if(isset($attrs['sambaAlgorithmicRidBase'])){
$this->ridBase= $attrs['sambaAlgorithmicRidBase'][0];
} else {
- $this->ridBase= $this->config->get_cfg_value("sambaRidBase");
+ $this->ridBase= $this->config->get_cfg_value("core","sambaRidBase");
}
if ($this->sambaDomainName == ""){
$this->sambaDomainName= $attrs['sambaDomainName'][0];
if ($this->sambaDomainName == ""){
$this->sambaDomainName= "DEFAULT";
}
- $this->ridBase= $this->config->get_cfg_value("sambaRidBase");
- $this->SID= $this->config->get_cfg_value("sambaSid");
+ $this->ridBase= $this->config->get_cfg_value("core","sambaRidBase");
+ $this->SID= $this->config->get_cfg_value("core","sambaSid");
}
/* Save in order to compare later on */
/* User wants me to fake the idMappings? This is useful for
making winbind resolve the user names in a reasonable amount
of time in combination with larger databases. */
- if ($this->config->get_cfg_value("sambaidmapping") == "true"){
+ if ($this->config->get_cfg_value("core","sambaidmapping") == "true"){
$this->attrs['objectClass'][]= "sambaIdmapEntry";
}