Code

Fixed FAI
[gosa.git] / plugins / admin / groups / class_groupApplication.inc
index a57969d68238f32d5089577306c184b7a599f186..57bb2c0c599ff8e528cbb7b3e8b3538758f928ea 100644 (file)
@@ -272,8 +272,17 @@ class appgroup extends plugin
     reset ($this->apps);
 
     $this->used_apps= array();
+  
     foreach ($this->gosaMemberApplication as $value){
-      $this->used_apps[$value]= $this->apps[$value];
+      if(!isset($this->apps[$value])){
+        print_red(sprintf(_("The application named %s is no longer available and has been removed."),$value));
+        $test = $this->gosaMemberApplication;
+        $test = array_flip($test);
+        unset($test[$value]);
+        $this->gosaMemberApplication = array_flip($test);
+      }else{
+        $this->used_apps[$value]= $this->apps[$value];
+      }
     }
   }