summaryrefslogtreecommitdiffstats
path: root/templates/show_localplay_status.inc.php
diff options
context:
space:
mode:
authorxgizzmo <xgizzmo@ampache>2006-10-26 23:10:49 +0000
committerxgizzmo <xgizzmo@ampache>2006-10-26 23:10:49 +0000
commitbafe4061a549b3c792ce4c327bc0acf98952cec4 (patch)
tree701ca9bc861d01cb46e5d2a77930cc135ccf22e3 /templates/show_localplay_status.inc.php
parent86d02b0c7a4a64792b6edfbed5a1fbe270444907 (diff)
downloadampache-bafe4061a549b3c792ce4c327bc0acf98952cec4.tar.gz
ampache-bafe4061a549b3c792ce4c327bc0acf98952cec4.tar.bz2
ampache-bafe4061a549b3c792ce4c327bc0acf98952cec4.zip
XHTML tweakage
Diffstat (limited to 'templates/show_localplay_status.inc.php')
-rw-r--r--templates/show_localplay_status.inc.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/templates/show_localplay_status.inc.php b/templates/show_localplay_status.inc.php
index 0e250923..e7f4dcce 100644
--- a/templates/show_localplay_status.inc.php
+++ b/templates/show_localplay_status.inc.php
@@ -23,7 +23,7 @@
$web_path = conf('web_path');
$localplay = init_localplay();
-$required_info = "&user_id=" . $GLOBALS['user']->id . "&sessid=" . session_id();
+$required_info = "&amp;user_id=" . $GLOBALS['user']->id . "&amp;sessid=" . session_id();
$ajax_url = $web_path . '/server/ajax.server.php';
$status = $localplay->status();
@@ -40,17 +40,17 @@ $status = $localplay->status();
-->
</script>
<?php if ($localplay->has_function('volume_up')) { ?>
- <span class="up_button" onclick="ajaxPut('<?php echo $ajax_url; ?>?action=localplay&cmd=volume_up<?php echo $required_info; ?>','lp_v');return true;">
+ <span class="up_button" onclick="ajaxPut('<?php echo $ajax_url; ?>?action=localplay&amp;cmd=volume_up<?php echo $required_info; ?>','lp_v');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 class="down_button" onclick="ajaxPut('<?php echo $ajax_url; ?>?action=localplay&cmd=volume_down<?php echo $required_info; ?>','lp_v');return true;">
+ <span class="down_button" onclick="ajaxPut('<?php echo $ajax_url; ?>?action=localplay&amp;cmd=volume_down<?php echo $required_info; ?>','lp_v');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 class="mute_button" onclick="ajaxPut('<?php echo $ajax_url; ?>?action=localplay&cmd=volume_mute<?php echo $required_info; ?>','lp_v');return true;">
+ <span class="mute_button" onclick="ajaxPut('<?php echo $ajax_url; ?>?action=localplay&amp;cmd=volume_mute<?php echo $required_info; ?>','lp_v');return true;">
<img src="<?php echo $web_path; ?>/images/localplay/volmute.gif" alt="volume mute" />
</span>
<?php } ?>