From 6362435810858e3ec6d7f2425d977de074c2a0c4 Mon Sep 17 00:00:00 2001 From: Samuel Crosby Date: Mon, 30 Dec 2013 12:12:55 +1100 Subject: [PATCH] Bug 9654: Missing space between amount and currency symbol in basket group Formatting fix. --- acqui/basketgroup.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/acqui/basketgroup.pl b/acqui/basketgroup.pl index 36c4462..63c2f95 100755 --- a/acqui/basketgroup.pl +++ b/acqui/basketgroup.pl @@ -145,7 +145,7 @@ sub BasketTotal { $total = $total * ( $gst / 100 +1); } } - $total .= $bookseller->{invoiceprice} // 0; + $total .= " " . $bookseller->{invoiceprice} // 0; return $total; } -- 1.7.9.5