diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-06-06 03:11:40 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-06-06 03:11:40 +0000 |
commit | 88cac15dd7d3af9fb87d1a430c079205b91801a0 (patch) | |
tree | 6e6af155a05b398a4927bee2aa6004ec93cd73b9 /templates | |
parent | 6c570d4e5a66ca2d49295f6352c71cee6ae32097 (diff) | |
download | ampache-88cac15dd7d3af9fb87d1a430c079205b91801a0.tar.gz ampache-88cac15dd7d3af9fb87d1a430c079205b91801a0.tar.bz2 ampache-88cac15dd7d3af9fb87d1a430c079205b91801a0.zip |
fixed stream/localplay buttons and the mpd skip now works *gasp*
Diffstat (limited to 'templates')
-rw-r--r-- | templates/show_localplay_switch.inc.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/show_localplay_switch.inc.php b/templates/show_localplay_switch.inc.php index 18129ba1..32e535f9 100644 --- a/templates/show_localplay_switch.inc.php +++ b/templates/show_localplay_switch.inc.php @@ -1,6 +1,6 @@ -<span <?php echo $stream; ?> onclick="ajaxPut('<?php echo $ajax_url; ?>','action=change_play_type&type=stream<?php echo $required_info; ?>','play_type');return true;"> +<span <?php echo $stream; ?> onclick="ajaxPut('<?php echo $ajax_url; ?>?action=change_play_type&type=stream<?php echo $required_info; ?>','play_type');return true;"> <?php echo _('Stream') ?> </span><br /><br /> -<span <?php echo $localplay; ?> onclick="ajaxPut('<?php echo $ajax_url; ?>','action=change_play_type&type=localplay<?php echo $required_info; ?>','play_type');return true;"> +<span <?php echo $localplay; ?> onclick="ajaxPut('<?php echo $ajax_url; ?>?action=change_play_type&type=localplay<?php echo $required_info; ?>','play_type');return true;"> <?php echo _('Localplay'); ?> </span> |