diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-01-09 06:45:45 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-01-09 06:45:45 +0000 |
commit | 58b41d1a982b8ccfe9c6df923695c9a7484b9fb6 (patch) | |
tree | e28a5bf2e363211b0ccb35de06cc02c936c07316 | |
parent | 8199762700f1cc6337da88dce331bd06a410d120 (diff) | |
download | ampache-58b41d1a982b8ccfe9c6df923695c9a7484b9fb6.tar.gz ampache-58b41d1a982b8ccfe9c6df923695c9a7484b9fb6.tar.bz2 ampache-58b41d1a982b8ccfe9c6df923695c9a7484b9fb6.zip |
reordered volume buttons for localplay per david fosters recommendation
-rw-r--r-- | templates/show_localplay_status.inc.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/show_localplay_status.inc.php b/templates/show_localplay_status.inc.php index 3353872e..b576275e 100644 --- a/templates/show_localplay_status.inc.php +++ b/templates/show_localplay_status.inc.php @@ -25,9 +25,9 @@ $status = $localplay->status(); <?php show_box_top(_('Localplay Control')); ?> <strong><?php echo $localplay->get_user_state($status['state']) ?></strong><br /> -<?php echo Ajax::button('?page=localplay&action=command&command=volume_up','volumeup',_('Increase Volume'),'localplay_volume_up'); ?> -<?php echo Ajax::button('?page=localplay&action=command&command=volume_down','volumedn',_('Decrease Volume'),'localplay_volume_dn'); ?> <?php echo Ajax::button('?page=localplay&action=command&command=volume_mute','volumemute',_('Mute'),'localplay_mute'); ?> +<?php echo Ajax::button('?page=localplay&action=command&command=volume_down','volumedn',_('Decrease Volume'),'localplay_volume_dn'); ?> +<?php echo Ajax::button('?page=localplay&action=command&command=volume_up','volumeup',_('Increase Volume'),'localplay_volume_up'); ?> <strong><?php echo _('Volume'); ?>:</strong><?php echo $status['volume']; ?>% <br /> <strong><?php echo _('Repeat') . ":"; ?></strong> <?php echo print_boolean($status['repeat']); ?> | |