From: Joe Hunt Date: Mon, 11 Oct 2021 21:33:07 +0000 (+0200) Subject: Trying to access array offset on value of type bool. Fixed. X-Git-Url: https://delta.frontaccounting.com/gitweb/?p=fa-stable.git;a=commitdiff_plain;h=97ce7657f26ca3cc7f7d705a8ca019bf06b31600 Trying to access array offset on value of type bool. Fixed. --- 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"]);