summaryrefslogtreecommitdiffstats
path: root/templates/show_localplay_status.inc.php
diff options
context:
space:
mode:
authorxgizzmo <xgizzmo@ampache>2006-09-29 22:01:47 +0000
committerxgizzmo <xgizzmo@ampache>2006-09-29 22:01:47 +0000
commitf7da90404df44001e9595039a6aed864febfdf3b (patch)
treec16ba503df9c19a11ca6814ed7b7a98abd07d38f /templates/show_localplay_status.inc.php
parenta89b759d813de4377581f23de8b90dfe85fc767f (diff)
downloadampache-f7da90404df44001e9595039a6aed864febfdf3b.tar.gz
ampache-f7da90404df44001e9595039a6aed864febfdf3b.tar.bz2
ampache-f7da90404df44001e9595039a6aed864febfdf3b.zip
fixed some XHTML issues
Diffstat (limited to 'templates/show_localplay_status.inc.php')
-rw-r--r--templates/show_localplay_status.inc.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/templates/show_localplay_status.inc.php b/templates/show_localplay_status.inc.php
index 28918a35..2fab62de 100644
--- a/templates/show_localplay_status.inc.php
+++ b/templates/show_localplay_status.inc.php
@@ -41,17 +41,17 @@ $track_name = ltrim(ltrim($track_name,' - '));
<div align="center"><?php require (conf('prefix') . '/templates/show_localplay_control.inc.php'); ?></div>
<div align="center">
<?php if ($localplay->has_function('volume_up')) { ?>
- <span id="up_button" onclick="ajaxPut('<?php echo $ajax_url; ?>?action=localplay&amp;cmd=volume_up<?php echo $required_info; ?>','localplay_state');return true;">
+ <span class="up_button" onclick="ajaxPut('<?php echo $ajax_url; ?>?action=localplay&amp;cmd=volume_up<?php echo $required_info; ?>','localplay_state');return true;">
<img src="<?php echo $web_path; ?>/images/localplay/volup.gif" alt="volume up" />
</span>
<?php } ?>
<?php if ($localplay->has_function('volume_down')) { ?>
- <span id="down_button" onclick="ajaxPut('<?php echo $ajax_url; ?>?action=localplay&amp;cmd=volume_down<?php echo $required_info; ?>','localplay_state');return true;">
+ <span class="down_button" onclick="ajaxPut('<?php echo $ajax_url; ?>?action=localplay&amp;cmd=volume_down<?php echo $required_info; ?>','localplay_state');return true;">
<img src="<?php echo $web_path; ?>/images/localplay/voldn.gif" alt="volume down" />
</span>
<?php } ?>
<?php if ($localplay->has_function('volume_mute')) { ?>
- <span id="mute_button" onclick="ajaxPut('<?php echo $ajax_url; ?>?action=localplay&amp;cmd=volume_mute<?php echo $required_info; ?>','localplay_state');return true;">
+ <span class="mute_button" onclick="ajaxPut('<?php echo $ajax_url; ?>?action=localplay&amp;cmd=volume_mute<?php echo $required_info; ?>','localplay_state');return true;">
<img src="<?php echo $web_path; ?>/images/localplay/volmute.gif" alt="volume mute" />
</span>
<?php } ?>
@@ -61,13 +61,13 @@ $track_name = ltrim(ltrim($track_name,' - '));
<br />
<?php if ($localplay->has_function('repeat')) { ?>
<?php echo _('Repeat') . ":" . print_boolean($status['repeat']); ?> |
- <a href="<?php echo $web_path; ?>/localplay.php?action=repeat&value=<?php echo invert_boolean($status['repeat']); ?>">
+ <a href="<?php echo $web_path; ?>/localplay.php?action=repeat&amp;value=<?php echo invert_boolean($status['repeat']); ?>">
<?php echo print_boolean(invert_boolean($status['repeat'])); ?>
</a><br />
<?php } ?>
<?php if ($localplay->has_function('random')) { ?>
<?php echo _('Random') . ":" . print_boolean($status['random']); ?> |
- <a href="<?php echo $web_path; ?>/localplay.php?action=random&value=<?php echo invert_boolean($status['random']); ?>">
+ <a href="<?php echo $web_path; ?>/localplay.php?action=random&amp;value=<?php echo invert_boolean($status['random']); ?>">
<?php echo print_boolean(invert_boolean($status['random'])); ?>
</a><br />
<?php } ?>