From 0103ae5f98e9be2bd58c82d999f497133da2de29 Mon Sep 17 00:00:00 2001 From: Miles Lott Date: Fri, 17 Oct 2003 07:45:56 +0000 Subject: [PATCH] silence the error in another way --- phpgwapi/inc/class.preferences.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpgwapi/inc/class.preferences.inc.php b/phpgwapi/inc/class.preferences.inc.php index 4f71152ef6..b27a05a552 100644 --- a/phpgwapi/inc/class.preferences.inc.php +++ b/phpgwapi/inc/class.preferences.inc.php @@ -394,7 +394,7 @@ } else { - if ($var && isset($this->$set_from[$app_name][$var]) && $this->$set_from[$app_name][$var] !== '') + if ($var && @isset($this->$set_from[$app_name][$var]) && $this->$set_from[$app_name][$var] !== '') { $this->data[$app_name][$var] = $this->$set_from[$app_name][$var]; break;