Closed (fixed)
Project:
Ubercart AJAX Cart
Version:
6.x-2.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Reporter:
Created:
7 Jul 2011 at 03:13 UTC
Updated:
21 Jul 2011 at 16:41 UTC
In <td class=cart-block-item-title> link to the product is doubled:
<td class="cart-block-item-title">
<a href="/product/drweb-security-space" title=""></a>
<a href="/product/drweb-security-space">Dr.Web Security Space</a>
</td>
uc_ajax_cart_block_content.tpl.php:
<td class="cart-block-item-title">
<a title="<?php print check_plain($item['descr']); ?>" href="<?php print $item['link'] ?>"><?php print $item['title'] ?><?php print $item['descr'] ?></a>
</td>
I've changed the code (uc_ajax_cart_block_content.tpl.php:):
<td class="cart-block-item-title">
<?php print $item['title'] ?><?php print $item['descr'] ?>
</td>
And:
<td class="cart-block-item-title">
<a href="/product/drweb-security-space">Dr.Web Security Space</a>
</td>
But I don't know how to add title:
<td class="cart-block-item-title">
<a href="/product/drweb-security-space" title="">Dr.Web Security Space</a>
</td>
Comments
Comment #1
tunicBug confirmed.
Just use
Committed to dev, thanks for the report.
Comment #2
tunicOooops, fixing.