summaryrefslogtreecommitdiffstats
path: root/templates/sidebar_browse.inc.php
diff options
context:
space:
mode:
authorxgizzmo <xgizzmo@ampache>2007-08-06 22:10:58 +0000
committerxgizzmo <xgizzmo@ampache>2007-08-06 22:10:58 +0000
commitc1e451729180af2a5749aa93671975e72f8d40a9 (patch)
tree6476d912a35abde5265df007c6daf132f046bd07 /templates/sidebar_browse.inc.php
parent0949ff48904b06438fc4215854d7fa3ba884474e (diff)
downloadampache-c1e451729180af2a5749aa93671975e72f8d40a9.tar.gz
ampache-c1e451729180af2a5749aa93671975e72f8d40a9.tar.bz2
ampache-c1e451729180af2a5749aa93671975e72f8d40a9.zip
fix some short tags causeing some weirdness in the menu, fixed a typo here and there.
Diffstat (limited to 'templates/sidebar_browse.inc.php')
-rw-r--r--templates/sidebar_browse.inc.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/sidebar_browse.inc.php b/templates/sidebar_browse.inc.php
index 3ae18e0c..f040f531 100644
--- a/templates/sidebar_browse.inc.php
+++ b/templates/sidebar_browse.inc.php
@@ -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" <? 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" <? 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>