diff options
author | Paul Arthur <paul.arthur@flowerysong.com> | 2013-01-26 00:40:03 -0500 |
---|---|---|
committer | Paul Arthur <paul.arthur@flowerysong.com> | 2013-01-26 00:40:03 -0500 |
commit | 31920c88a7b109d789511f45502c6291a2e617a0 (patch) | |
tree | 38d0528740bc05aeb8ee4d7c646b1a9d24e89353 /admin/catalog.php | |
parent | d86e605fedaf05e280bb027cc2b583406b3490c6 (diff) | |
download | ampache-31920c88a7b109d789511f45502c6291a2e617a0.tar.gz ampache-31920c88a7b109d789511f45502c6291a2e617a0.tar.bz2 ampache-31920c88a7b109d789511f45502c6291a2e617a0.zip |
Move Catalog::get_disabled() to Song
Diffstat (limited to 'admin/catalog.php')
-rw-r--r-- | admin/catalog.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/admin/catalog.php b/admin/catalog.php index bcd69130..1df1b0e7 100644 --- a/admin/catalog.php +++ b/admin/catalog.php @@ -273,7 +273,7 @@ switch ($_REQUEST['action']) { /* Stop the demo hippies */ if (Config::get('demo_mode')) { break; } - $songs = $catalog->get_disabled(); + $songs = Song::get_disabled(); if (count($songs)) { require Config::get('prefix') . '/templates/show_disabled_songs.inc.php'; } |