Code

Added reload fixes
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Wed, 1 Mar 2006 05:50:28 +0000 (05:50 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Wed, 1 Mar 2006 05:50:28 +0000 (05:50 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@2787 594d385d-05f5-0310-b6e9-bd551577e9d8

plugins/gofon/conference/class_phoneConferenceManagment.inc

index 57de90f6136a82f870359fd55c19744718a36c69..141451d5191390bb62cacc1bf6c5ecd2147f04ed 100644 (file)
@@ -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 */