Skip to content

Commit

Permalink
// Rollback previous pull request merge (with a truncate)
Browse files Browse the repository at this point in the history
  • Loading branch information
Damien Metzger committed Nov 29, 2013
1 parent 8ee61f8 commit 90e1a39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/blockcategories/category-tree-branch.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

<li class="category_{$node.id}{if isset($last) && $last == 'true'} last{/if}">
<a href="{$node.link|escape:'html':'UTF-8'}" {if isset($currentCategoryId) && $node.id == $currentCategoryId}class="selected"{/if}
title="{$node.name|escape:'html':'UTF-8'}">{$node.name|escape:'html':'UTF-8'}</a>
title="{$node.desc|strip_tags|trim|truncate:255:'...'|escape:'html':'UTF-8'}">{$node.name|escape:'html':'UTF-8'}</a>
{if $node.children|@count > 0}
<ul>
{foreach from=$node.children item=child name=categoryTreeBranch}
Expand Down

0 comments on commit 90e1a39

Please sign in to comment.