Skip to content

Commit 0b36900

Browse files
authored
No alt tag value in Recently Viewed Products block (#1920)
This PR solves the issue reported here #1286
1 parent 8a02f86 commit 0b36900

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/design/frontend/rwd/default/template/reports/product_viewed.phtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
<?php foreach ($_products as $_item): ?>
3636
<li class="item">
3737
<a href="<?php echo $this->getProductUrl($_item) ?>">
38-
<span class="product-image"><img src="<?php echo $this->helper('catalog/image')->init($_item, 'thumbnail')->resize(50, 50)->setWatermarkSize('30x10'); ?>" width="50" height="50" alt="<?php echo $this->escapeHtml($this->getProductName()) ?>" /></span>
38+
<span class="product-image"><img src="<?php echo $this->helper('catalog/image')->init($_item, 'thumbnail')->resize(50, 50)->setWatermarkSize('30x10'); ?>" width="50" height="50" alt="<?php echo $this->escapeHtml($_item->getName()) ?>" /></span>
3939
</a>
4040
<div class="product-details">
4141
<p class="product-name">

0 commit comments

Comments
 (0)