summaryrefslogtreecommitdiffstats
path: root/templates/sidebar_browse.inc.php
diff options
context:
space:
mode:
authorspocky <spocky@ampache>2007-08-07 21:58:45 +0000
committerspocky <spocky@ampache>2007-08-07 21:58:45 +0000
commit2a7030d1f1a21397b4b2757100e55414d42c819c (patch)
treeca666772fc06da055c8228eecb97e4c484eed78d /templates/sidebar_browse.inc.php
parent14c5f8c0956ba5ad1e963921dc72845cd31f1301 (diff)
downloadampache-2a7030d1f1a21397b4b2757100e55414d42c819c.tar.gz
ampache-2a7030d1f1a21397b4b2757100e55414d42c819c.tar.bz2
ampache-2a7030d1f1a21397b4b2757100e55414d42c819c.zip
almost finished sidebar stuff
Diffstat (limited to 'templates/sidebar_browse.inc.php')
-rw-r--r--templates/sidebar_browse.inc.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/templates/sidebar_browse.inc.php b/templates/sidebar_browse.inc.php
index f040f531..608f98bc 100644
--- a/templates/sidebar_browse.inc.php
+++ b/templates/sidebar_browse.inc.php
@@ -1,6 +1,6 @@
<?php $ajax_info = Config::get('ajax_url'); $web_path = Config::get('web_path'); ?>
<ul class="sb2" id="sb_browse">
- <li><?php echo _('Browse By'); ?>
+ <li><h4><?php echo _('Browse By'); ?></h4>
<?php
// Build the selected dealie
$text = scrub_in($_REQUEST['action']) . '_ac';
@@ -15,7 +15,7 @@
<li id="sb_browse_bb_RadioStation"><a href="<?php echo $web_path; ?>/browse.php?action=live_stream"><?php echo _('Radio Stations'); ?></a></li>
</ul>
</li>
- <li><?php echo _('Filters'); ?>
+ <li><h4><?php echo _('Filters'); ?></h4>
<div class="sb3">
<?php show_alphabet_list($_REQUEST['alpha_match'],$_REQUEST['action']); ?>
<!--
@@ -24,10 +24,10 @@
<input type="checkbox" onclick="ajaxPut('<?php echo $ajax_info; ?>?action=browse&amp;key=rated&amp;value=1');return true;" value="1" />
<?php echo _('Rated'); ?><br />
-->
- <input id="unplayedCB" type="checkbox" <?php echo $string = Browse::get_filter('unplayed') ? 'checked="checked"' : ''; ?> />
+ <input id="unplayedCB" type="checkbox" <?php echo $string = Browse::get_filter('unplayed') ? 'checked="checked"' : ''; ?>/>
<label id="unplayedLabel" for="unplayedCB"><?php echo _('Unplayed'); ?></label><br />
<?php echo Ajax::observe('unplayedCB','click',Ajax::action('?page=browse&action=browse&key=unplayed&value=1','')); ?>
- <input id="show_artCB" type="checkbox" <?php echo $string = Browse::get_filter('show_art') ? 'checked="checked"' : ''; ?> />
+ <input id="show_artCB" type="checkbox" <?php echo $string = Browse::get_filter('show_art') ? 'checked="checked"' : ''; ?>/>
<label id="show_artLabel" for="show_artCB"><?php echo _('Show Art'); ?></label><br />
<?php echo Ajax::observe('show_artCB','click',Ajax::action('?page=browse&action=browse&key=show_art&value=1','')); ?>
</div>