From a85bf2b444454d120a334d6ae11a0e981bd75db9 Mon Sep 17 00:00:00 2001 From: mark Date: Sat, 1 Oct 2011 02:14:31 +0000 Subject: [PATCH] fix scary but harmless warning in text invoice, from #13655 --- conf/invoice_template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/invoice_template b/conf/invoice_template index 769f043d7..e90424f24 100644 --- a/conf/invoice_template +++ b/conf/invoice_template @@ -1,6 +1,6 @@ { emt($notice_name) } - { substr(emt("Page [_1] of [_2] ", $page, $total_pages), 0, 19); } { use Date::Format; time2str("%x", $date); } { emt("Invoice #") . $invnum; } + { substr(emt("Page [_1] of [_2] ", $page, $total_pages), 0, 19); } { time2str("%x", $date); } { emt("Invoice #") . $invnum; } { $company_name; } -- 2.11.0