// Correct bad named vars "sparate" instead of "separate"

This commit is contained in:
mDeflotte
2012-06-19 07:15:40 +00:00
parent 0bc876009a
commit 43dedd5866
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -295,7 +295,7 @@ class ParentOrderControllerCore extends FrontController
$product['is_discounted'] = $product['price_without_specific_price'] != $product['price_wt'];
}
$show_option_allow_sparate_package = !$this->context->cart->isAllProductsInStock(true)
$show_option_allow_separate_package = !$this->context->cart->isAllProductsInStock(true)
&& Configuration::get('PS_SHIP_WHEN_AVAILABLE');
$this->context->smarty->assign($summary);
@@ -315,7 +315,7 @@ class ParentOrderControllerCore extends FrontController
'currencyRate' => $this->context->currency->conversion_rate,
'currencyFormat' => $this->context->currency->format,
'currencyBlank' => $this->context->currency->blank,
'show_option_allow_sparate_package' => $show_option_allow_sparate_package,
'show_option_allow_separate_package' => $show_option_allow_separate_package,
));