From: cajus Date: Mon, 14 Apr 2008 13:50:37 +0000 (+0000) Subject: Well. Better late than never. Applied second ridbase patch. Closes #352. X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=f4d1cf8a3ffab2028a3eb13ae7d03ed8f1840c3d;p=gosa.git Well. Better late than never. Applied second ridbase patch. Closes #352. git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.5@10428 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/plugins/admin/groups/class_groupGeneric.inc b/plugins/admin/groups/class_groupGeneric.inc index 3e45d71ff..45d7a8aec 100644 --- a/plugins/admin/groups/class_groupGeneric.inc +++ b/plugins/admin/groups/class_groupGeneric.inc @@ -113,7 +113,11 @@ class group extends plugin $ldap->search ("(&(objectClass=sambaDomain)(sambaSID=$this->SID))",array("sambaAlgorithmicRidBase")); if ($ldap->count() != 0){ $attrs= $ldap->fetch(); - $this->ridBase= $attrs['sambaAlgorithmicRidBase'][0]; + if(isset($attrs['sambaAlgorithmicRidBase'])){ + $this->ridBase= $attrs['sambaAlgorithmicRidBase'][0]; + } else { + $this->ridBase= $this->config->current['RIDBASE']; + } /* Get domain name for SID */ $this->sambaDomainName= "DEFAULT";