diff options
author | Paul Arthur <flowerysong00@yahoo.com> | 2011-04-02 01:39:23 -0400 |
---|---|---|
committer | Paul Arthur <flowerysong00@yahoo.com> | 2011-04-02 01:39:23 -0400 |
commit | 30d3bfdb7f69c7b5702744f39739f1dd2e16e3ab (patch) | |
tree | 0aceae387c2931171a12bd2f2dfe1941790c2d8d /templates/show_tagcloud.inc.php | |
parent | ac8b89708c7f9c2cc0fa91328c0ec93a95c08b5a (diff) | |
download | ampache-30d3bfdb7f69c7b5702744f39739f1dd2e16e3ab.tar.gz ampache-30d3bfdb7f69c7b5702744f39739f1dd2e16e3ab.tar.bz2 ampache-30d3bfdb7f69c7b5702744f39739f1dd2e16e3ab.zip |
Fix FS#152
Tag browsing is now at least somewhat unbroken.
Diffstat (limited to 'templates/show_tagcloud.inc.php')
-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 c2d58d42..a7a3b769 100644 --- a/templates/show_tagcloud.inc.php +++ b/templates/show_tagcloud.inc.php @@ -39,7 +39,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&&browse_id=' . $browse->id . '&tag_id=' . intval($tag->id),'')); ?> +<?php echo Ajax::observe('click_' . intval($tag->id),'click',Ajax::action('?page=tag&action=add_filter&browse_id=' . $browse2->id . '&tag_id=' . intval($tag->id),'')); ?> <?php } ?> <?php if (!count($object_ids)) { ?> <span class="fatalerror"><?php echo _('Not Enough Data'); ?></span> |