diff options
-rw-r--r-- | templates/show_localplay.inc.php | 1 | ||||
-rw-r--r-- | templates/sidebar.inc.php | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/templates/show_localplay.inc.php b/templates/show_localplay.inc.php index e0074b50..b9d126b9 100644 --- a/templates/show_localplay.inc.php +++ b/templates/show_localplay.inc.php @@ -55,3 +55,4 @@ $songs = $localplay->get(); </tr> <?php } ?> </table> +</div> diff --git a/templates/sidebar.inc.php b/templates/sidebar.inc.php index 36c90ec7..99916072 100644 --- a/templates/sidebar.inc.php +++ b/templates/sidebar.inc.php @@ -187,10 +187,10 @@ $web_path = conf('web_path'); <br /> <?php $type = conf('play_type'); ${$type} = 'id="pt_active"'; ?> <span class="text-action" style="cursor:pointer;" id="play_type"> - <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> - <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> </span> |