diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2010-02-14 00:56:07 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2010-02-14 00:56:07 +0000 |
commit | 8bc17dd3f0ed4dc520bb64b20dac8a31e72e447f (patch) | |
tree | 49fc67aaf19bfbc749c54d22522f31cfea8fabb5 /templates/show_artist.inc.php | |
parent | 704e66d0b489a7d3b0d4dcedc79515e5300732ff (diff) | |
download | ampache-8bc17dd3f0ed4dc520bb64b20dac8a31e72e447f.tar.gz ampache-8bc17dd3f0ed4dc520bb64b20dac8a31e72e447f.tar.bz2 ampache-8bc17dd3f0ed4dc520bb64b20dac8a31e72e447f.zip |
Tweaked how features / bandwidth level is checked, not happy with it.
Diffstat (limited to 'templates/show_artist.inc.php')
-rw-r--r-- | templates/show_artist.inc.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/templates/show_artist.inc.php b/templates/show_artist.inc.php index 24033e8b..4e63835d 100644 --- a/templates/show_artist.inc.php +++ b/templates/show_artist.inc.php @@ -60,6 +60,10 @@ if (Config::get('ratings')) { <a href="<?php echo $web_path; ?>/batch.php?action=artist&id=<?php echo $artist->id; ?>"><?php echo _('Download'); ?></a> </li> <?php } ?> +<li> + <input type="checkbox" id="show_artist_artCB" <?php echo $string = Browse::get_filter('show_art') ? 'checked="checked"' : ''; ?>/> <?php echo _('Show Art'); ?> + <?php echo Ajax::observe('show_artist_artCB','click',Ajax::action('?page=browse&action=browse&key=show_art&value=1&type=album','')); ?> +</ul> </div> <?php show_box_bottom(); ?> <?php |