diff options
author | mark <mark> | 2011-10-01 02:14:31 +0000 |
---|---|---|
committer | mark <mark> | 2011-10-01 02:14:31 +0000 |
commit | a85bf2b444454d120a334d6ae11a0e981bd75db9 (patch) | |
tree | 645668fb58a88e85e8c24bd4088239ae8edca3ea /conf | |
parent | 5561143b7d2e7e153302017e1d3ecdf7caa7dba8 (diff) |
fix scary but harmless warning in text invoice, from #13655
Diffstat (limited to 'conf')
-rw-r--r-- | conf/invoice_template | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |