diff options
author | Paul 'flowerysong' Arthur <flowerysong00@yahoo.com> | 2010-06-15 21:18:17 +0000 |
---|---|---|
committer | Paul 'flowerysong' Arthur <flowerysong00@yahoo.com> | 2010-06-15 21:18:17 +0000 |
commit | 733f507937ffaa28b7e8739f63a77c459dfe407b (patch) | |
tree | 6be0a78ba43b89581c6a78af5fc3a46252eb9a6c /templates | |
parent | 33213b8ea84e15863f13affbdb31316e7f89c7d7 (diff) | |
download | ampache-733f507937ffaa28b7e8739f63a77c459dfe407b.tar.gz ampache-733f507937ffaa28b7e8739f63a77c459dfe407b.tar.bz2 ampache-733f507937ffaa28b7e8739f63a77c459dfe407b.zip |
Browsing by tag is broken. This doesn't fix it.
Diffstat (limited to 'templates')
-rw-r--r-- | templates/show_tagcloud.inc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/show_tagcloud.inc.php b/templates/show_tagcloud.inc.php index a241b65a..5e907254 100644 --- a/templates/show_tagcloud.inc.php +++ b/templates/show_tagcloud.inc.php @@ -28,7 +28,7 @@ $web_path = Config::get('web_path'); $tag->format(); ?> <span id="click_<?php echo intval($tag->id); ?>" class="<?php echo $tag->f_class; ?>"><?php echo $tag->name; ?></span> -<?php echo Ajax::observe('click_' . intval($tag->id),'click',Ajax::action('?page=tag&action=add_filter&tag_id=' . intval($tag->id),'')); ?> +<?php echo Ajax::observe('click_' . intval($tag->id),'click',Ajax::action('?page=tag&action=add_filter&&browse_id=' . $browse->id . '&tag_id=' . intval($tag->id),'')); ?> <?php } ?> <?php if (!count($object_ids)) { ?> <span class="fatalerror"><?php echo _('Not Enough Data'); ?></span> |