summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 4eadc90)
raw | patch | inline | side by side (parent: 4eadc90)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 1 Mar 2006 05:50:28 +0000 (05:50 +0000) | ||
committer | hickert <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 | patch | blob | history |
diff --git a/plugins/gofon/conference/class_phoneConferenceManagment.inc b/plugins/gofon/conference/class_phoneConferenceManagment.inc
index 57de90f6136a82f870359fd55c19744718a36c69..141451d5191390bb62cacc1bf6c5ecd2147f04ed 100644 (file)
/* 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'];
}
/* 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();
}
/* 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 */