From 231f26b248b8f041f69b0af416778559cf66b074 Mon Sep 17 00:00:00 2001 From: Galen Charlton Date: Tue, 17 Dec 2013 17:34:21 +0000 Subject: [PATCH] Bug 9807: (follow-up) quell warning if invoice price not set Signed-off-by: Galen Charlton --- acqui/basketgroup.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/acqui/basketgroup.pl b/acqui/basketgroup.pl index c9db3b379a..36c446224f 100755 --- a/acqui/basketgroup.pl +++ b/acqui/basketgroup.pl @@ -145,7 +145,7 @@ sub BasketTotal { $total = $total * ( $gst / 100 +1); } } - $total .= $bookseller->{invoiceprice}; + $total .= $bookseller->{invoiceprice} // 0; return $total; } -- 2.20.1