diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-08-30 20:59:11 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-08-30 20:59:11 +0000 |
commit | 7881b58d92bc5cecc8bd26bdf1d72c8ee29c5382 (patch) | |
tree | 7acab47113d2a2ea232d1e35e3f7bf0185227855 /templates/show_now_playing.inc.php | |
parent | 728b76c5c920b259107904d2297815cb723e6d28 (diff) | |
download | ampache-7881b58d92bc5cecc8bd26bdf1d72c8ee29c5382.tar.gz ampache-7881b58d92bc5cecc8bd26bdf1d72c8ee29c5382.tar.bz2 ampache-7881b58d92bc5cecc8bd26bdf1d72c8ee29c5382.zip |
sync to trunk
Diffstat (limited to 'templates/show_now_playing.inc.php')
-rw-r--r-- | templates/show_now_playing.inc.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/templates/show_now_playing.inc.php b/templates/show_now_playing.inc.php index 267bb9c4..d489c274 100644 --- a/templates/show_now_playing.inc.php +++ b/templates/show_now_playing.inc.php @@ -1,7 +1,7 @@ <?php /* -Copyright (c) 2001 - 2007 Ampache.org +Copyright (c) Ampache.org All rights reserved. This program is free software; you can redistribute it and/or @@ -28,8 +28,9 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ if (count($results)) { +$link = Config::get('use_rss') ? ' ' . RSS::get_display('nowplaying') : ''; ?> -<?php show_box_top(_('Now Playing')); ?> +<?php show_box_top(_('Now Playing') . $link); ?> <div class="np_row"> <?php foreach ($results as $item) { |