@@ -, +, @@ in basket group --- acqui/basketgroup.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/acqui/basketgroup.pl +++ a/acqui/basketgroup.pl @@ -145,7 +145,7 @@ sub BasketTotal { $total = $total * ( $gst / 100 +1); } } - $total .= $bookseller->{invoiceprice} // 0; + $total .= " " . ($bookseller->{invoiceprice} // 0); return $total; } --