diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-08-30 21:06:09 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-08-30 21:06:09 +0000 |
commit | 67847b12ddf89863898fc7f561532cfaf7980028 (patch) | |
tree | 9cf05ce20c0ce0911abf58ea658162f9b6cb5765 /templates/show_recently_played.inc.php | |
parent | 7881b58d92bc5cecc8bd26bdf1d72c8ee29c5382 (diff) | |
download | ampache-67847b12ddf89863898fc7f561532cfaf7980028.tar.gz ampache-67847b12ddf89863898fc7f561532cfaf7980028.tar.bz2 ampache-67847b12ddf89863898fc7f561532cfaf7980028.zip |
move stuff around so it makes more sense and is not messed up by the ajax refresh
Diffstat (limited to 'templates/show_recently_played.inc.php')
-rw-r--r-- | templates/show_recently_played.inc.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/templates/show_recently_played.inc.php b/templates/show_recently_played.inc.php index 85b9b423..25ca1396 100644 --- a/templates/show_recently_played.inc.php +++ b/templates/show_recently_played.inc.php @@ -21,6 +21,8 @@ /* Define the time places starting at 0 */ $time_unit = array('',_('seconds ago'),_('minutes ago'),_('hours ago'),_('days ago'),_('weeks ago'),_('months ago'),_('years ago')); +$link = Config::get('use_rss') ? ' ' . RSS::get_display('recentlyplayed') : ''; +show_box_top(_('Recently Played') . $link); ?> <table class="tabledata" cellpadding="0" cellspacing="0"> <colgroup> @@ -102,3 +104,4 @@ $time_unit = array('',_('seconds ago'),_('minutes ago'),_('hours ago'),_('days a <th class="cel_lastplayed"><?php echo _('Last Played'); ?></th> </tr> </table> +<?php show_box_bottom(); ?> |