From: cajus Date: Wed, 28 Sep 2005 16:46:59 +0000 (+0000) Subject: Fixed Problem with TABS post creation X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=21d30b255b9d96c1b5ef6c9081d6127f12559875;p=gosa.git Fixed Problem with TABS post creation git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@1438 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/include/class_plugin.inc b/include/class_plugin.inc index bd9f630f8..00751345d 100644 --- a/include/class_plugin.inc +++ b/include/class_plugin.inc @@ -377,8 +377,8 @@ class plugin { /* Find postcreate entries for this class */ $command= search_config($this->config->data['MENU'], get_class($this), "POSTCREATE"); - if ($command == "" && isset($this->config->data['TAB'])){ - $command= search_config($this->config->data['TAB'], get_class($this), "POSTCREATE"); + if ($command == "" && isset($this->config->data['TABS'])){ + $command= search_config($this->config->data['TABS'], get_class($this), "POSTCREATE"); } if ($command != ""){ @@ -405,8 +405,8 @@ class plugin { /* Find postcreate entries for this class */ $command= search_config($this->config->data['MENU'], get_class($this), "POSTMODIFY"); - if ($command == "" && isset($this->config->data['TAB'])){ - $command= search_config($this->config->data['TAB'], get_class($this), "POSTMODIFY"); + if ($command == "" && isset($this->config->data['TABS'])){ + $command= search_config($this->config->data['TABS'], get_class($this), "POSTMODIFY"); } if ($command != ""){ @@ -433,8 +433,8 @@ class plugin { /* Find postremove entries for this class */ $command= search_config($this->config->data['MENU'], get_class($this), "POSTREMOVE"); - if ($command == "" && isset($this->config->data['TAB'])){ - $command= search_config($this->config->data['TAB'], get_class($this), "POSTREMOVE"); + if ($command == "" && isset($this->config->data['TABS'])){ + $command= search_config($this->config->data['TABS'], get_class($this), "POSTREMOVE"); } if ($command != ""){