diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-03-21 04:43:48 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-03-21 04:43:48 +0000 |
commit | 260b62361e031b3a0d4261e892170f294825ed61 (patch) | |
tree | 9ba79b0c5ac498c4cfd1caf896baa1d1caab7a84 /lib/rss.php | |
parent | 06652fe0406b45732ad80a3ab08c7d97bae4b47c (diff) | |
download | ampache-260b62361e031b3a0d4261e892170f294825ed61.tar.gz ampache-260b62361e031b3a0d4261e892170f294825ed61.tar.bz2 ampache-260b62361e031b3a0d4261e892170f294825ed61.zip |
fixed recently played, removed a bunch of useless files, added new methods to api as requested by dev, fixed some minor issues with enabling of localplay methods
Diffstat (limited to 'lib/rss.php')
-rw-r--r-- | lib/rss.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rss.php b/lib/rss.php index 99c7ebaf..fb72022f 100644 --- a/lib/rss.php +++ b/lib/rss.php @@ -178,7 +178,7 @@ switch ($type) { case "recentlyplayed": $time_unit = array('',_('seconds ago'),_('minutes ago'),_('hours ago'),_('days ago'),_('weeks ago'),_('months ago'),_('years ago')); - $recent = get_recently_played(); + $recent = Song::get_recently_played(); echo " <channel>\n <title>$rss_recentlyplayed_title</title>\n"; echo " <link>$web_path</link>\n <description>$rss_main_description</description>\n"; |