From: cajus Date: Fri, 10 Jun 2005 05:42:00 +0000 (+0000) Subject: Fixed problem of undefined objects in "non-tab-mode" X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=46abadb6e0f9aec0c340666820e5aa768646556c;p=gosa.git 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 --- 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', '');