From: hickert Date: Mon, 13 Sep 2010 13:44:40 +0000 (+0000) Subject: Updated modification detection for plugins. X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=b5fcf6ba1265bf29846d569cec21bf4e11a316f8;p=gosa.git Updated modification detection for plugins. -Skip detection for list only plugins. git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@19646 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/gosa-core/include/class_tabs.inc b/gosa-core/include/class_tabs.inc index f38056fad..a8111988c 100644 --- a/gosa-core/include/class_tabs.inc +++ b/gosa-core/include/class_tabs.inc @@ -160,7 +160,7 @@ class tabs // Detect if we've modifications right now. foreach ($this->by_name as $class => $name){ - $this->isPluginModified |= $this->by_object[$class]->is_modified; + $this->isPluginModified |= (isset($this->by_object[$class]->is_modified)) && $this->by_object[$class]->is_modified; } $display="".$display;