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

This commit is contained in:
lBrieu
2011-10-05 14:28:47 +00:00
parent 82507c9e8c
commit ee04b617f4
+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;