diff options
author | xgizzmo <xgizzmo@ampache> | 2006-01-03 05:04:49 +0000 |
---|---|---|
committer | xgizzmo <xgizzmo@ampache> | 2006-01-03 05:04:49 +0000 |
commit | b5bd31cca19de386e4fdf0b3601b3acc9df948a8 (patch) | |
tree | 31f5ebfacdb717bff191d78ac495743b98ac5eb8 /templates | |
parent | 0a8a38da18d459b4983cc1d7b3c9cbca9a7cb716 (diff) | |
download | ampache-b5bd31cca19de386e4fdf0b3601b3acc9df948a8.tar.gz ampache-b5bd31cca19de386e4fdf0b3601b3acc9df948a8.tar.bz2 ampache-b5bd31cca19de386e4fdf0b3601b3acc9df948a8.zip |
XHTML clean up
Diffstat (limited to 'templates')
-rw-r--r-- | templates/show_mpdplay.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/show_mpdplay.inc b/templates/show_mpdplay.inc index 0371eacf..4b9f9e03 100644 --- a/templates/show_mpdplay.inc +++ b/templates/show_mpdplay.inc @@ -49,9 +49,9 @@ if (true) /* rigged to do AJAX for now; change to conf('AJAX') later*/ { ?> <!-- <input type="button" class="unselected_button" value="times" onclick="timestuff();"/> --> <input type="button" class="unselected_button" value="|< " onclick="startRequest('action=Prev');"/> - <input type="button" class=<?php echo ($stop ? "selected_button" : "unselected_button") ?> id="stop_button" value=" X " onclick="startRequest('action=stop');"/> - <input type="button" class=<?php echo ($play ? "selected_button" : "unselected_button") ?> id="play_button" value=" > " onclick="startRequest('action=play');"/> - <input type="button" class=<?php echo ($pause ? "selected_button" : "unselected_button") ?> id="pause_button" value=" | | " onclick="startRequest('action=pause');"/> + <input type="button" class=<?php echo ($stop ? "'selected_button'" : "'unselected_button'") ?> id="stop_button" value=" X " onclick="startRequest('action=stop');"/> + <input type="button" class=<?php echo ($play ? "'selected_button'" : "'unselected_button'") ?> id="play_button" value=" > " onclick="startRequest('action=play');"/> + <input type="button" class=<?php echo ($pause ? "'selected_button'" : "'unselected_button'") ?> id="pause_button" value=" | | " onclick="startRequest('action=pause');"/> <input type="button" class="unselected_button" value=" >|" onclick="startRequest('action=Next');"/> <?php } |