From fabc8d3e9dbd0ebeb28cefcdf85c5abf90a3496f Mon Sep 17 00:00:00 2001 From: Joe Hunt Date: Thu, 22 Aug 2019 08:17:53 +0200 Subject: [PATCH] Undefined 'no_zeroes' in rep115 line 235. Fixed. --- reporting/rep115.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reporting/rep115.php b/reporting/rep115.php index 0d8c580d..ee03bf8a 100644 --- a/reporting/rep115.php +++ b/reporting/rep115.php @@ -232,7 +232,7 @@ function print_customer_balances() $grandtotal[$i] += $init[$i]; } - if (db_num_rows($res) == 0 && !no_zeroes) + if (db_num_rows($res) == 0 && !$no_zeros) { $rep->TextCol(0, 2, $myrow['name']); $rep->AmountCol(3, 4, $init[3], $dec); -- 2.30.2