[-] PDF : Bug Fixed #PSFV-800 - Invoice free text is not displayed

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@14540 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
fBrignoli
2012-04-06 15:12:30 +00:00
parent 077fe49452
commit acdb080f59
+1 -2
View File
@@ -66,14 +66,13 @@ abstract class HTMLTemplateCore
public function getFooter()
{
$shop_address = $this->getShopAddress();
$this->smarty->assign(array(
'available_in_your_account' => $this->available_in_your_account,
'shop_address' => $shop_address,
'shop_fax' => Configuration::get('PS_SHOP_FAX'),
'shop_phone' => Configuration::get('PS_SHOP_PHONE'),
'shop_details' => Configuration::get('PS_SHOP_DETAILS'),
'free_text' => Configuration::get('PS_INVOICE_FREE_TEXT')
'free_text' => Configuration::get('PS_INVOICE_FREE_TEXT', (int)Context::getContext()->language->id)
));
return $this->smarty->fetch($this->getTemplate('footer'));