From b0de7973950dd3f665839600b20141461c624614 Mon Sep 17 00:00:00 2001 From: Joe Date: Mon, 18 Apr 2022 08:47:10 +0200 Subject: [PATCH] Email invoice always says invoice 0 from company. Fixed. --- reporting/rep107.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reporting/rep107.php b/reporting/rep107.php index c2870991..0ac5f03b 100644 --- a/reporting/rep107.php +++ b/reporting/rep107.php @@ -323,7 +323,7 @@ function print_invoices() $rep->Font(); if ($email == 1) { - $rep->End($email, sprintf(_("Invoice %d from %s"), $myrow['reference'], get_company_pref('coy_name'))); + $rep->End($email, sprintf(_("Invoice %s from %s"), $myrow['reference'], get_company_pref('coy_name'))); } } if ($email == 0) -- 2.30.2