diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-12-07 14:02:12 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-12-07 14:02:12 +0000 |
commit | 07f8ef395a4d4c6312ded96a039ef58e245e70b0 (patch) | |
tree | ae4832d14873950cfb864e5f4a73f5e7814bff14 /templates/show_recently_played.inc.php | |
parent | 287a46f11e429ff8a11bc646afaeadce122425c6 (diff) | |
download | ampache-07f8ef395a4d4c6312ded96a039ef58e245e70b0.tar.gz ampache-07f8ef395a4d4c6312ded96a039ef58e245e70b0.tar.bz2 ampache-07f8ef395a4d4c6312ded96a039ef58e245e70b0.zip |
finished up the rss feed stuff for now playing, it is currently the only type that works, should conform to rss standards now
Diffstat (limited to 'templates/show_recently_played.inc.php')
-rw-r--r-- | templates/show_recently_played.inc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/show_recently_played.inc.php b/templates/show_recently_played.inc.php index 25ca1396..a638a24d 100644 --- a/templates/show_recently_played.inc.php +++ b/templates/show_recently_played.inc.php @@ -21,7 +21,7 @@ /* 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') : ''; +$link = Config::get('use_rss') ? ' ' . AmpacheRSS::get_display('recentlyplayed') : ''; show_box_top(_('Recently Played') . $link); ?> <table class="tabledata" cellpadding="0" cellspacing="0"> |