From 97ce7657f26ca3cc7f7d705a8ca019bf06b31600 Mon Sep 17 00:00:00 2001 From: Joe Hunt Date: Mon, 11 Oct 2021 23:33:07 +0200 Subject: [PATCH] Trying to access array offset on value of type bool. Fixed. --- includes/ui/contacts_view.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/ui/contacts_view.inc b/includes/ui/contacts_view.inc index fbc65761..23474adc 100644 --- a/includes/ui/contacts_view.inc +++ b/includes/ui/contacts_view.inc @@ -48,7 +48,7 @@ class contacts extends simple_crud { while ($last) { - if ($myrow['id'] != $last['id']) { + if (@$myrow['id'] != $last['id']) { alt_table_row_color($k); label_cell(implode('
',$description)); label_cell($last["ref"]); -- 2.30.2