From 87c0049e756a90056183f3311c64395fcccfe5a5 Mon Sep 17 00:00:00 2001 From: Sarah Hoffmann Date: Sun, 14 Apr 2019 12:03:37 +0200 Subject: [PATCH] isaddress field may be missing in details view --- lib/template/details-html.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/template/details-html.php b/lib/template/details-html.php index 9ef59563..9b76efc1 100644 --- a/lib/template/details-html.php +++ b/lib/template/details-html.php @@ -61,7 +61,7 @@ function _one_row($aAddressLine){ - $bNotUsed = !$aAddressLine['isaddress']; + $bNotUsed = isset($aAddressLine['isaddress']) && !$aAddressLine['isaddress']; echo ''."\n"; echo ' '.(trim($aAddressLine['localname'])?$aAddressLine['localname']:'No Name')."\n"; -- 2.43.2