diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-09-28 05:39:50 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-09-28 05:39:50 +0000 |
commit | ebdb7573bf4176b81264d2c66dd567fa3c3ee0bd (patch) | |
tree | f16da64cdfec967a34bc71d5902ca59c64d7b9ac /templates/show_localplay_control.inc.php | |
parent | 6232e0f8d78c2555e64672341c54916cc0e8b3ed (diff) | |
download | ampache-ebdb7573bf4176b81264d2c66dd567fa3c3ee0bd.tar.gz ampache-ebdb7573bf4176b81264d2c66dd567fa3c3ee0bd.tar.bz2 ampache-ebdb7573bf4176b81264d2c66dd567fa3c3ee0bd.zip |
fixed up localplay a little more, to the point of it basicly working... added check for mysql on installer langue page, tweaked some css as well
Diffstat (limited to 'templates/show_localplay_control.inc.php')
-rw-r--r-- | templates/show_localplay_control.inc.php | 18 |
1 files changed, 1 insertions, 17 deletions
diff --git a/templates/show_localplay_control.inc.php b/templates/show_localplay_control.inc.php index b9558ade..fa11c700 100644 --- a/templates/show_localplay_control.inc.php +++ b/templates/show_localplay_control.inc.php @@ -27,7 +27,7 @@ $required_info = "&user_id=" . $GLOBALS['user']->id . "&sessid=" . sess $ajax_url = $web_path . '/server/ajax.server.php'; ?> -<div class="localplaycontrol" style="display:table-cell;cursor:pointer;border:1px solid black;padding:2px;"> +<div class="localplaycontrol" style="display:table-cell;cursor:pointer;padding:2px;"> <?php if ($localplay->has_function('prev')) { ?> <span id="prev_button" onclick="ajaxPut('<?php echo $ajax_url; ?>?action=localplay&cmd=prev<?php echo $required_info; ?>','localplay_state');return true;"> <img src="<?php echo $web_path; ?>/images/localplay/prev.gif" alt="prev" /> @@ -49,20 +49,4 @@ $ajax_url = $web_path . '/server/ajax.server.php'; <img src="<?php echo $web_path; ?>/images/localplay/next.gif" alt="next" /> </span> <?php } ?> -<br /> -<?php if ($localplay->has_function('volume_up')) { ?> -<span id="up_button" onclick="ajaxPut('<?php echo $ajax_url; ?>?action=localplay&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&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&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 } ?> </div> |