Code

Fixed generic/connectivity kolabAccount
[gosa.git] / plugins / personal / connectivity / class_connectivity.inc
index 4b81da675c45dd08199eda40c3ae8190ae7427ea..c0690c1cde3cc3bc65be1f3c96ccdb5202141fd3 100644 (file)
@@ -105,7 +105,7 @@ class connectivity extends plugin
 
   function check()
   {
-    $message= array();
+    $message= plugin::check();
 
     foreach ($this->plugin_name as $name){
       $tmp= $this->plugin[$name]->check();
@@ -152,6 +152,19 @@ class connectivity extends plugin
     }
   }
 
+  /* Prepare the connectivity obj 
+   */
+  function PrepareForCopyPaste($obj)
+  { 
+    $tmp = $this->plugin;
+    plugin::PrepareForCopyPaste($obj);
+    $this->plugin = $tmp;
+    foreach($obj->plugin as $key => $plug){
+      $this->plugin[$key]->PrepareForCopyPaste($plug);
+    }
+  }
+  
+
 }
 
 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler: