summaryrefslogtreecommitdiffstats
path: root/browse.php
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2008-08-13 03:36:29 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2008-08-13 03:36:29 +0000
commit64fb3786bbe81bc72099f154c59c9c7fefcbd2c9 (patch)
treebdbb61c7fcb3917067c5ca13d2267472ec8781df /browse.php
parentf49a78f512b7a8e76d5548f188536f2044c4ec60 (diff)
downloadampache-64fb3786bbe81bc72099f154c59c9c7fefcbd2c9.tar.gz
ampache-64fb3786bbe81bc72099f154c59c9c7fefcbd2c9.tar.bz2
ampache-64fb3786bbe81bc72099f154c59c9c7fefcbd2c9.zip
good number of changes to browse, this breaks more then it fixes...
Diffstat (limited to 'browse.php')
-rw-r--r--browse.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/browse.php b/browse.php
index ad3a3634..2df29389 100644
--- a/browse.php
+++ b/browse.php
@@ -56,7 +56,7 @@ switch($_REQUEST['action']) {
case 'album':
Browse::set_sort('name','ASC');
$album_ids = Browse::get_objects();
- Album::build_cache($album_ids);
+ Album::build_cache($album_ids,'extra');
Browse::show_objects($album_ids);
break;
case 'tag':
@@ -68,7 +68,7 @@ switch($_REQUEST['action']) {
case 'artist':
Browse::set_sort('name','ASC');
$artist_ids = Browse::get_objects();
- Artist::build_cache($artist_ids);
+ Artist::build_cache($artist_ids,'extra');
Browse::show_objects($artist_ids);
break;
case 'song':