Code

Fixed id allocation
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 12 Nov 2010 14:25:31 +0000 (14:25 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 12 Nov 2010 14:25:31 +0000 (14:25 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.6@20231 594d385d-05f5-0310-b6e9-bd551577e9d8

gosa-core/include/functions.inc

index 1ec22f9c8ed277d71848605817745c0a5ada8a34..8723e01ad2e10aac817d402d229822bdddaa8f73 100644 (file)
@@ -3540,7 +3540,7 @@ function get_next_id_traditional($attrib, $dn)
     /* Call base hook */
     $base= get_base_from_hook($dn, $attrib);
   }
-  for ($id= $base; $id++; $id < pow(2,32)){
+  for ($id= $base; $id++; $id < $hwm){
     if (!in_array($id, $ids)){
       return ($id);
     }