diff options
author | Paul Arthur <paul.arthur@flowerysong.com> | 2013-01-26 01:28:34 -0500 |
---|---|---|
committer | Paul Arthur <paul.arthur@flowerysong.com> | 2013-01-26 01:28:34 -0500 |
commit | d572c2776f5ab7f66a632f54006dabe2f159c02b (patch) | |
tree | 2da705d0c0feabdea69fd7b8df0c5453c2e7571a /templates/show_admin_info.inc.php | |
parent | 04aa79b53c38095d4727f4d850e191c64d99352f (diff) | |
download | ampache-d572c2776f5ab7f66a632f54006dabe2f159c02b.tar.gz ampache-d572c2776f5ab7f66a632f54006dabe2f159c02b.tar.bz2 ampache-d572c2776f5ab7f66a632f54006dabe2f159c02b.zip |
Move show_box_{top,bottom}() from ui.lib.php to UI
Diffstat (limited to 'templates/show_admin_info.inc.php')
-rw-r--r-- | templates/show_admin_info.inc.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/templates/show_admin_info.inc.php b/templates/show_admin_info.inc.php index 9e5f4bfa..70189bb4 100644 --- a/templates/show_admin_info.inc.php +++ b/templates/show_admin_info.inc.php @@ -29,14 +29,14 @@ $flagged = Flag::get_recent(10); $songs = Song::get_disabled(10); ?> -<?php show_box_top(T_('Last Ten Flagged Records')); ?> +<?php UI::show_box_top(T_('Last Ten Flagged Records')); ?> <?php require Config::get('prefix') . '/templates/show_flagged.inc.php'; ?> -<?php show_box_bottom(); ?> +<?php UI::show_box_bottom(); ?> -<?php show_box_top(T_('Disabled Songs')); ?> +<?php UI::show_box_top(T_('Disabled Songs')); ?> <!-- Show Last 10 Disabled Songs --> <?php require Config::get('prefix') . '/templates/show_disabled_songs.inc.php'; ?> <div> <a class="button" href="<?php echo $web_path; ?>/admin/catalog.php?action=show_disabled"><?php echo T_('Show All'); ?>...</a> </div> -<?php show_box_bottom(); ?> +<?php UI::show_box_bottom(); ?> |