summaryrefslogtreecommitdiffstats
path: root/lib/class/catalog.class.php
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2008-01-13 21:34:56 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2008-01-13 21:34:56 +0000
commit7e154abae9113055bb935e7b95c55119bfaff208 (patch)
tree97f885a6fc2ad55cc97a5f155dbc243605aac824 /lib/class/catalog.class.php
parentcba4a991c0f554c2b5e3dec7e882476ff73760bb (diff)
downloadampache-7e154abae9113055bb935e7b95c55119bfaff208.tar.gz
ampache-7e154abae9113055bb935e7b95c55119bfaff208.tar.bz2
ampache-7e154abae9113055bb935e7b95c55119bfaff208.zip
- Fixed search by rating (Thx alex2008)
- Fixed no result return on random methods - Added mime,language & lyrics to catalog updating functions
Diffstat (limited to 'lib/class/catalog.class.php')
-rw-r--r--lib/class/catalog.class.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/class/catalog.class.php b/lib/class/catalog.class.php
index 34747853..54a45273 100644
--- a/lib/class/catalog.class.php
+++ b/lib/class/catalog.class.php
@@ -1161,11 +1161,14 @@ class Catalog {
$new_song->title = $results['title'];
$new_song->year = $results['year'];
$new_song->comment = $results['comment'];
+ $new_song->language = $results['language'];
+ $new_song->lyrics = $results['lyrics'];
$new_song->bitrate = $results['bitrate'];
$new_song->rate = $results['rate'];
$new_song->mode = $results['mode'];
$new_song->size = $results['size'];
$new_song->time = $results['time'];
+ $new_song->mime = $results['mime'];
$new_song->track = $results['track'];
$artist = $results['artist'];
$album = $results['album'];