From b5fcf6ba1265bf29846d569cec21bf4e11a316f8 Mon Sep 17 00:00:00 2001 From: hickert Date: Mon, 13 Sep 2010 13:44:40 +0000 Subject: [PATCH] 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 --- gosa-core/include/class_tabs.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.30.2