1
0
Fork 0
mirror of https://github.com/Yetangitu/ampache synced 2025-10-03 09:49:30 +02:00

Move show_box_{top,bottom}() from ui.lib.php to UI

This commit is contained in:
Paul Arthur 2013-01-26 01:28:34 -05:00
parent 04aa79b53c
commit d572c2776f
78 changed files with 218 additions and 222 deletions

View file

@ -70,12 +70,12 @@ switch($_REQUEST['action']) {
$object_ids = $browse->get_saved();
$keys = array_keys($object_ids);
Tag::build_cache($keys);
show_box_top(T_('Tag Cloud'), 'box box_tag_cloud');
UI::show_box_top(T_('Tag Cloud'), 'box box_tag_cloud');
$browse2 = new Browse();
$browse2->set_type('song');
$browse2->store();
require_once Config::get('prefix') . '/templates/show_tagcloud.inc.php';
show_box_bottom();
UI::show_box_bottom();
require_once Config::get('prefix') . '/templates/browse_content.inc.php';
break;
case 'artist':