[*] FO : Hide the download link and download icon if the virtual product do not have files associated with it

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@9063 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
lBrieu
2011-10-05 14:28:47 +00:00
parent fce8c6a4e0
commit 4b8ae2693c
+3 -1
View File
@@ -505,6 +505,8 @@ class OrderCore extends ObjectModel
{
$row['filename'] = ProductDownload::getFilenameFromIdProduct((int)$row['product_id']);
}
// Get the display filename
$row['display_filename'] = ProductDownload::getFilenameFromFilename($row['filename']);
}
/* Stock product */
$resultArray[(int)$row['id_order_detail']] = $row;
@@ -547,7 +549,7 @@ class OrderCore extends ObjectModel
foreach ($products AS $product)
{
$pd = ProductDownload::getIdFromIdProduct((int)($product['product_id']));
if ($pd AND Validate::isUnsignedInt($pd) AND $product['download_hash'])
if ($pd AND Validate::isUnsignedInt($pd) AND $product['download_hash'] AND $product['display_filename'] != '')
{
if ($strict === false)
return true;