Code

Updated table summary
[gosa.git] / gosa-plugins / goto / admin / devices / class_deviceGeneric.inc
index 76acbdbf138d89d83110ed7e0fd80b07aeef6f3e..1eeb6dd9396af5f2ab86dcff265d43ea43b623b0 100644 (file)
@@ -71,6 +71,7 @@ class deviceGeneric extends plugin
 
   public function execute()
   {
+    plugin::execute();
     $smarty = get_smarty();
     $smarty->assign("usePrototype", "true");
     $smarty->assign("base", $this->baseSelector->render());
@@ -112,6 +113,11 @@ class deviceGeneric extends plugin
     if(empty($this->vendor) || !$this->is_2byteHex($this->vendor)){
       $message[]= msgPool::invalid(_("Vendor-ID"),"","","0x1234");
     }
+
+    // Check if a wrong base was supplied
+    if(!$this->baseSelector->checkLastBaseUpdate()){
+      $message[]= msgPool::check_base();
+    }
   
     /* Check if entry already exists */ 
     if($this->cn != $this->orig_cn || $this->dn == "new"){