Code

Port from stable.
authorcajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8>
Mon, 14 Apr 2008 13:52:07 +0000 (13:52 +0000)
committercajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8>
Mon, 14 Apr 2008 13:52:07 +0000 (13:52 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@10429 594d385d-05f5-0310-b6e9-bd551577e9d8

gosa-core/plugins/admin/groups/class_groupGeneric.inc

index 612021f49d0e5968e668a5fe95be3f72776c4b4f..a0f4fc79f180a8f4b069b62e38314dae89d2ddfc 100644 (file)
@@ -139,7 +139,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";