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 /templates | |
parent | d86e605fedaf05e280bb027cc2b583406b3490c6 (diff) | |
download | ampache-31920c88a7b109d789511f45502c6291a2e617a0.tar.gz ampache-31920c88a7b109d789511f45502c6291a2e617a0.tar.bz2 ampache-31920c88a7b109d789511f45502c6291a2e617a0.zip |
Move Catalog::get_disabled() to Song
Diffstat (limited to 'templates')
-rw-r--r-- | templates/show_admin_info.inc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/show_admin_info.inc.php b/templates/show_admin_info.inc.php index 439e281a..9e5f4bfa 100644 --- a/templates/show_admin_info.inc.php +++ b/templates/show_admin_info.inc.php @@ -26,7 +26,7 @@ $web_path = Config::get('web_path'); $flagged = Flag::get_recent(10); /* Disabled Information Gathering */ -$songs = Catalog::get_disabled(10); +$songs = Song::get_disabled(10); ?> <?php show_box_top(T_('Last Ten Flagged Records')); ?> |