diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-02-11 06:13:21 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-02-11 06:13:21 +0000 |
commit | 949d7bb12fe9de9ccf3d2958bccde4354ab04d9b (patch) | |
tree | 7228810d63f0823b1557b4b33ecd29f1bf194328 /lib/xmlrpc.php | |
parent | 66de7ffff1c95e5bb415f1c3b56966f2d9916864 (diff) | |
download | ampache-949d7bb12fe9de9ccf3d2958bccde4354ab04d9b.tar.gz ampache-949d7bb12fe9de9ccf3d2958bccde4354ab04d9b.tar.bz2 ampache-949d7bb12fe9de9ccf3d2958bccde4354ab04d9b.zip |
* Fixed xmlrpc, hopefully
* Added min count filter to browse by artist
* Fixed ratings to show yours, not average if rated
* other misc fixes
Diffstat (limited to 'lib/xmlrpc.php')
-rw-r--r-- | lib/xmlrpc.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/xmlrpc.php b/lib/xmlrpc.php index 8e016f60..a0c3d2b8 100644 --- a/lib/xmlrpc.php +++ b/lib/xmlrpc.php @@ -1,13 +1,12 @@ <?php /* - Copyright (c) 2001 - 2006 Ampache.org + Copyright (c) 2001 - 2007 Ampache.org All rights reserved. This program is free software; you can redistribute it and/or - modify it under the terms of the GNU General Public License - as published by the Free Software Foundation; either version 2 - of the License, or (at your option) any later version. + modify it under the terms of the GNU General Public License v2 + as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -116,6 +115,7 @@ function remote_song_query($params) { while ($r = mysql_fetch_object($db_results)) { $song = new Song($r->id); + $song->fill_ext_info(); $song->album = $song->get_album_name(); $song->artist = $song->get_artist_name(); $song->genre = $song->get_genre_name(); |