Code

Fixed Problem with Copy & Paste of servers
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 30 Apr 2010 08:10:55 +0000 (08:10 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 30 Apr 2010 08:10:55 +0000 (08:10 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.6@17987 594d385d-05f5-0310-b6e9-bd551577e9d8

gosa-plugins/systems/admin/systems/class_serverService.inc

index 1755b44ab2fbff30c5ed54089f0e5aa9d616ce02..89af4b7fd31fe07f8b5c95818a51f95ab43beadc 100644 (file)
@@ -557,8 +557,6 @@ class ServerService extends management
    */
   function PrepareForCopyPaste($source)
   {
-    plugin::PrepareForCopyPaste($source);
-
     foreach($this->plugins as $name => $plugin){
       $this->plugins[$name]->PrepareForCopyPaste($source);
     }
@@ -599,6 +597,15 @@ class ServerService extends management
       $this->plugins[$name]->set_acl_category($category);
     }
   }
+
+  function saveCopyDialog(){
+  }
+
+
+  function getCopyDialog(){
+    return(array("string"=>"","status"=>""));
+  }
+
 }
 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
 ?>