diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2009-03-09 15:32:18 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2009-03-09 15:32:18 +0000 |
commit | 50036b1fad29cc7e2b2da30cc63d95e48c625a2a (patch) | |
tree | 042c5dc1a29cdc5901138ef4267309e4dbd97035 /localplay.php | |
parent | 242401a915eb2600f242af92c98cc9dc7190735c (diff) | |
download | ampache-50036b1fad29cc7e2b2da30cc63d95e48c625a2a.tar.gz ampache-50036b1fad29cc7e2b2da30cc63d95e48c625a2a.tar.bz2 ampache-50036b1fad29cc7e2b2da30cc63d95e48c625a2a.zip |
fix some browsing issues I created with the query switch, considering having browse class extend query
Diffstat (limited to 'localplay.php')
-rw-r--r-- | localplay.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/localplay.php b/localplay.php index 27871aa0..6aef4b2b 100644 --- a/localplay.php +++ b/localplay.php @@ -83,8 +83,7 @@ switch ($_REQUEST['action']) { require_once Config::get('prefix') . '/templates/show_localplay_status.inc.php'; Browse::set_type('playlist_localplay'); Browse::set_static_content(1); - Browse::save_objects($objects); - Browse::show_objects(); + Browse::show_objects($objects); break; } // end switch action |