From 46abadb6e0f9aec0c340666820e5aa768646556c Mon Sep 17 00:00:00 2001 From: cajus Date: Fri, 10 Jun 2005 05:42:00 +0000 Subject: [PATCH] Fixed problem of undefined objects in "non-tab-mode" git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@639 594d385d-05f5-0310-b6e9-bd551577e9d8 --- plugins/personal/connectivity/class_kolabAccount.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/personal/connectivity/class_kolabAccount.inc b/plugins/personal/connectivity/class_kolabAccount.inc index 09c3e8333..b55cc9d64 100644 --- a/plugins/personal/connectivity/class_kolabAccount.inc +++ b/plugins/personal/connectivity/class_kolabAccount.inc @@ -149,7 +149,7 @@ class kolabAccount extends plugin } /* Transfer account states for this union */ - if ($this->parent->by_object['mailAccount']->is_account){ + if (isset($this->parent) && $this->parent->by_object['mailAccount']->is_account){ $smarty->assign('is_account', 'true'); } else { $smarty->assign('is_account', ''); -- 2.30.2