Code

Moved from obsolete SERVICE to TAB keywords.
authorcajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 17 Jun 2005 09:10:08 +0000 (09:10 +0000)
committercajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 17 Jun 2005 09:10:08 +0000 (09:10 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@738 594d385d-05f5-0310-b6e9-bd551577e9d8

debian/changelog
include/class_plugin.inc

index 9fdc3d1aa1883ffb5212d2d20743b08e9ac29379..5d157288306ebfc987a24286c3dac7a05ce0c900 100644 (file)
@@ -1,3 +1,9 @@
+gosa (2.4beta2-1) unstable; urgency=low
+
+  * New upstream release
+
+ --  Cajus Pollmeier <cajus@debian.org>  Thu, 16 Jun 2005 15:31:28 +0200
+
 gosa (2.4beta1-1) unstable; urgency=high
 
   * New upstream release
index e7c01c3aa12c827ffdf99a20c1e44280a7f813f6..642c52b3e0ffbab914dcbf9dbfd3acd99c15ca6c 100644 (file)
@@ -368,7 +368,7 @@ class plugin
     /* Find postcreate entries for this class */
     $command= search_config($this->config->data['MENU'], get_class($this), "POSTCREATE");
     if ($command == ""){
-      $command= search_config($this->config->data['SERVICE'], get_class($this), "POSTCREATE");
+      $command= search_config($this->config->data['TAB'], get_class($this), "POSTCREATE");
     }
 
     if ($command != ""){
@@ -394,7 +394,7 @@ class plugin
     /* Find postcreate entries for this class */
     $command= search_config($this->config->data['MENU'], get_class($this), "POSTMODIFY");
     if ($command == ""){
-      $command= search_config($this->config->data['SERVICE'], get_class($this), "POSTMODIFY");
+      $command= search_config($this->config->data['TAB'], get_class($this), "POSTMODIFY");
     }
 
     if ($command != ""){
@@ -420,7 +420,7 @@ class plugin
     /* Find postremove entries for this class */
     $command= search_config($this->config->data['MENU'], get_class($this), "POSTREMOVE");
     if ($command == ""){
-      $command= search_config($this->config->data['SERVICE'], get_class($this), "POSTREMOVE");
+      $command= search_config($this->config->data['TAB'], get_class($this), "POSTREMOVE");
     }
 
     if ($command != ""){