From a385bbff23ee53a3a053fe3a504ac54ed377e9ec Mon Sep 17 00:00:00 2001 From: hickert Date: Wed, 1 Mar 2006 05:50:28 +0000 Subject: [PATCH] Added reload fixes git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@2787 594d385d-05f5-0310-b6e9-bd551577e9d8 --- plugins/gofon/conference/class_phoneConferenceManagment.inc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/gofon/conference/class_phoneConferenceManagment.inc b/plugins/gofon/conference/class_phoneConferenceManagment.inc index 57de90f61..141451d51 100644 --- a/plugins/gofon/conference/class_phoneConferenceManagment.inc +++ b/plugins/gofon/conference/class_phoneConferenceManagment.inc @@ -201,7 +201,7 @@ class phoneConferenceManagment extends plugin /* Edit Entry if Posted action (s_action) == edit * The entry which will be edited is defined in $s_entry */ - if ($s_action=="edit"){ + if (($s_action=="edit") && (!isset($this->conftab->config))){ $this->dn= $this->conferences[$s_entry]['dn']; @@ -227,7 +227,7 @@ class phoneConferenceManagment extends plugin } /* Edit finished, check and save changes */ - if (isset($_POST['edit_finish'])){ + if ((isset($_POST['edit_finish'])) && (isset($this->conftab->config))){ /* Check tabs, will feed message array */ $this->conftab->last= $this->conftab->current; $this->conftab->save_object(); @@ -257,7 +257,7 @@ class phoneConferenceManagment extends plugin } /* if edit or new, show dialog */ - if($this->conftab){ + if(($this->conftab) && (isset($this->conftab->config))){ $display= $this->conftab->execute(); /* Don't show buttons if tab dialog requests this */ -- 2.30.2