From 78aabf68d8f4b77386b1be2ac6b7085ab9964a10 Mon Sep 17 00:00:00 2001 From: rMalie Date: Fri, 30 Dec 2011 10:05:18 +0000 Subject: [PATCH] // Fix bug #PSFV-229 in bankwire module git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@11923 b9a71923-0436-4b27-9f14-aed3839534dd --- modules/bankwire/validation.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/bankwire/validation.php b/modules/bankwire/validation.php index 8bf014224..ebef6c2fc 100644 --- a/modules/bankwire/validation.php +++ b/modules/bankwire/validation.php @@ -52,7 +52,7 @@ if (!$authorized) $customer = new Customer((int)$cart->id_customer); if (!Validate::isLoadedObject($customer)) - Tools::redirec('index.php?controller=order&step=1'); + Tools::redirect('index.php?controller=order&step=1'); $currency = Tools::getValue('currency_payement', false) ? new Currency(Tools::getValue('currency_payement')) : Context::getContext()->currency; $total = (float)($cart->getOrderTotal(true, Cart::BOTH));