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

tunic’s picture

Bug confirmed.

Just use

$item['title']

Committed to dev, thanks for the report.

tunic’s picture

Status: Active » Fixed

Oooops, fixing.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.