From 2e5f38012fd6a22d5391464bcb852300e2a2a5ad Mon Sep 17 00:00:00 2001 From: gBrunier Date: Mon, 2 May 2011 08:56:16 +0000 Subject: [PATCH] [-] FO : Fixed bug #PSCFI-1718 - Categories block doesn't show categories when processing empty cart checkout. There was a javascript error. --- themes/prestashop/js/order-address.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/themes/prestashop/js/order-address.js b/themes/prestashop/js/order-address.js index bd0a054ad..c3238eb3e 100644 --- a/themes/prestashop/js/order-address.js +++ b/themes/prestashop/js/order-address.js @@ -77,7 +77,10 @@ function updateAddressesDisplay(first_view) } function updateAddressDisplay(addressType) -{ +{ + if (typeof(addresses) == 'undefined') + return false; + if (addresses.length <= 0) return false;