aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/menubar.inc.php34
-rw-r--r--themes/Sylvia/icon/add_tag.pngbin193 -> 0 bytes
-rw-r--r--themes/default/icon/add_tag.pngbin59 -> 0 bytes
-rw-r--r--themes/default/template/menubar_tags.tpl10
4 files changed, 20 insertions, 24 deletions
diff --git a/include/menubar.inc.php b/include/menubar.inc.php
index 27de0d5ef..052f3d830 100644
--- a/include/menubar.inc.php
+++ b/include/menubar.inc.php
@@ -112,29 +112,27 @@ function initialize_menu()
$block = $menu->get_block('mbTags');
if ( $block!=null and 'tags'==@$page['section'] and !empty($page['items']) )
{
- $tags = get_common_tags($page['items'],
- $conf['menubar_tag_cloud_items_number'], $page['tag_ids']);
+ $tags = get_common_tags(
+ $page['items'],
+ $conf['menubar_tag_cloud_items_number'],
+ $page['tag_ids']
+ );
$tags = add_level_to_tags($tags);
foreach ($tags as $tag)
{
- $block->data[] =
- array_merge( $tag,
- array(
- 'URL' => make_index_url(
- array(
- 'tags' => array($tag)
+ $block->data[] = array_merge(
+ $tag,
+ array(
+ 'U_ADD' => make_index_url(
+ array(
+ 'tags' => array_merge(
+ $page['tags'],
+ array($tag)
)
- ),
- 'U_ADD' => make_index_url(
- array(
- 'tags' => array_merge(
- $page['tags'],
- array($tag)
- )
- )
- ),
- )
+ )
+ ),
+ )
);
}
$block->template = 'menubar_tags.tpl';
diff --git a/themes/Sylvia/icon/add_tag.png b/themes/Sylvia/icon/add_tag.png
deleted file mode 100644
index 66042aadf..000000000
--- a/themes/Sylvia/icon/add_tag.png
+++ /dev/null
Binary files differ
diff --git a/themes/default/icon/add_tag.png b/themes/default/icon/add_tag.png
deleted file mode 100644
index 9051a1d26..000000000
--- a/themes/default/icon/add_tag.png
+++ /dev/null
Binary files differ
diff --git a/themes/default/template/menubar_tags.tpl b/themes/default/template/menubar_tags.tpl
index ad7177347..d56980c2d 100644
--- a/themes/default/template/menubar_tags.tpl
+++ b/themes/default/template/menubar_tags.tpl
@@ -2,15 +2,13 @@
<dd>
<div id="menuTagCloud">
{foreach from=$block->data item=tag}
- <span>
- {if !empty($tag.U_ADD) }
- <a href="{$tag.U_ADD}"
+ <span style="margin-right:5px;">
+ <a class="tagLevel{$tag.level}" 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">
- <img src="{$ROOT_URL}{$themeconf.icon_dir}/add_tag.png" alt="+">
+ +{$tag.name}
</a>
- {/if}
- <a href="{$tag.URL}" class="tagLevel{$tag.level}" title="{'See images linked to this tag only'|@translate}">{$tag.name}</a>{* there should be no space between end of a and span elements to avoid IE8 bug https://connect.microsoft.com/IE/feedback/ViewFeedback.aspx?FeedbackID=366567 *}</span>
+ </span>
{/foreach}
</div>
</dd>