summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 4992643)
raw | patch | inline | side by side (parent: 4992643)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 1 Mar 2006 05:06:59 +0000 (05:06 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 1 Mar 2006 05:06:59 +0000 (05:06 +0000) |
"showning own lock message caused by reloading edit post" ,
"prevent displaying broken objects "
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@2779 594d385d-05f5-0310-b6e9-bd551577e9d8
"prevent displaying broken objects "
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@2779 594d385d-05f5-0310-b6e9-bd551577e9d8
plugins/admin/applications/class_applicationManagement.inc | patch | blob | history |
diff --git a/plugins/admin/applications/class_applicationManagement.inc b/plugins/admin/applications/class_applicationManagement.inc
index 53fa1d3ac7e4c080c8f795b8d7fcaae11d752cd0..874e803f249d69b6184a90d128d931969376d3eb 100644 (file)
/* Finish apps edit is triggered by the tabulator dialog, so
the user wants to save edited data. Check and save at this
point. */
- if (isset($_POST['edit_finish'])){
+ if ((isset($_POST['edit_finish'])) && (isset($this->apptabs->config))){
/* Check tabs, will feed message array */
$this->apptabs->last= $this->apptabs->current;
}
/* User wants to edit data? */
- if ($s_action=="edit"){
+ if (($s_action=="edit") && (!isset($this->apptabs->config))){
/* Get 'dn' from posted 'applist', must be unique */
$this->dn= $this->applications[$s_entry]['dn'];
}
/* Show tab dialog if object is present */
- if ($this->apptabs){
+ if (($this->apptabs) && (isset($this->apptabs->config))){
$display= $this->apptabs->execute();
/* Don't show buttons if tab dialog requests this */