Code

Removed post functions from connectivity
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 15 Sep 2006 08:10:29 +0000 (08:10 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 15 Sep 2006 08:10:29 +0000 (08:10 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@4686 594d385d-05f5-0310-b6e9-bd551577e9d8

plugins/personal/connectivity/class_connectivity.inc

index c6ed520c55c75bd2468e39fcb7741eccf9f462d6..036209a90b31e104c189fb0864d21f35b8a9d0ff 100644 (file)
@@ -133,10 +133,8 @@ class connectivity extends plugin
       $this->plugin[$name]->dn= $this->dn;
       if ($this->plugin[$name]->is_account){
         $this->plugin[$name]->save();
-        $this->plugin[$name]->postcreate();
       } else {
         $this->plugin[$name]->remove_from_parent();
-        $this->plugin[$name]->postremove();
       }
     }
   }
@@ -147,7 +145,6 @@ class connectivity extends plugin
     foreach ($this->plugin_name as $name){
       $this->plugin[$name]->dn= $this->dn;
       $this->plugin[$name]->remove_from_parent();
-      $this->plugin[$name]->postremove();
     }
   }