From: hickert Date: Wed, 19 Dec 2007 10:36:58 +0000 (+0000) Subject: Fixed dialog handling.- X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=549990d3979b1a210b067c6f55a2b7284ba96a89;p=gosa.git Fixed dialog handling.- git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@8143 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/gosa-core/include/class_multi_plug.inc b/gosa-core/include/class_multi_plug.inc index 89f025687..5a624257f 100644 --- a/gosa-core/include/class_multi_plug.inc +++ b/gosa-core/include/class_multi_plug.inc @@ -131,6 +131,8 @@ class multi_plug public $config = NULL; private $s_class= ""; public $current = ""; + public $by_object = array(); + public $by_name = array(); /*! \brief Creates a multi_plug object @param object $config GOsa Configuration object @@ -154,6 +156,9 @@ class multi_plug */ $this->o_tab = new $class($config,$tab,"new",$acl_category); $this->o_tab->set_acl_base($acl_base); + $this->by_object = &$this->o_tab->by_object; + $this->by_name = &$this->o_tab->by_name; + $this->current = &$this->o_tab->current; /* Check if the specified tab object supports multiple edits */ @@ -278,7 +283,8 @@ class multi_plug */ public function execute() { - return($this->o_tab->execute()); + $str = $this->o_tab->execute(); + return($str); }