diff options
author | rvelices <rv-github@modusoptimus.com> | 2010-04-10 09:47:19 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2010-04-10 09:47:19 +0000 |
commit | b7e2107181e78c29ee9829d5d6b346ec1dc49d67 (patch) | |
tree | 8c0532ffaf54606a69e09eef1a292711c41f328c /themes/default/template | |
parent | aaccf93392bf3a9e0712d8bcbd51ef9cc8a5fbba (diff) |
feqture 1583 : show related tags block also when browsing non tag sections
git-svn-id: http://piwigo.org/svn/trunk@5752 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'themes/default/template')
-rw-r--r-- | themes/default/template/menubar_tags.tpl | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/themes/default/template/menubar_tags.tpl b/themes/default/template/menubar_tags.tpl index ad1d752da..f357efba4 100644 --- a/themes/default/template/menubar_tags.tpl +++ b/themes/default/template/menubar_tags.tpl @@ -3,10 +3,16 @@ <div id="menuTagCloud"> {foreach from=$block->data item=tag} <span> - <a class="tagLevel{$tag.level}" href="{$tag.U_ADD}" + <a class="tagLevel{$tag.level}" + {if isset($tag.U_ADD)} + href="{$tag.U_ADD}" title="{$pwg->l10n_dec('%d image is also linked to current tags', '%d images are also linked to current tags', $tag.counter)}" - rel="nofollow"> - +{$tag.name}</a></span> + rel="nofollow">+ + {else} + href="{$tag.URL}" + title="{'See elements linked to this tag only'|@translate}"> + {/if} + {$tag.name}</a></span> {* ABOVE there should be no space between text, </a> and </span> elements to avoid IE8 bug https://connect.microsoft.com/IE/feedback/ViewFeedback.aspx?FeedbackID=366567 *} {/foreach} </div> |