diff options
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(); |