From 0ac2e534e97244f4173e43896c59d579c18ae213 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 --- 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));