diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-09-17 03:11:06 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-09-17 03:11:06 +0000 |
commit | 88562955f9c96d8d347acc8c12cdf33adab04f94 (patch) | |
tree | ad90a912041f32aeeef6fb662ad4d91c67c34c0b /templates/show_album.inc.php | |
parent | d1dcfcbc903153007fff2c155248046ecfbdc76a (diff) | |
download | ampache-88562955f9c96d8d347acc8c12cdf33adab04f94.tar.gz ampache-88562955f9c96d8d347acc8c12cdf33adab04f94.tar.bz2 ampache-88562955f9c96d8d347acc8c12cdf33adab04f94.zip |
added sorting on most objects in most views, report bugs if you find points where sorting fails
Diffstat (limited to 'templates/show_album.inc.php')
-rw-r--r-- | templates/show_album.inc.php | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/templates/show_album.inc.php b/templates/show_album.inc.php index 3a840db3..b2421511 100644 --- a/templates/show_album.inc.php +++ b/templates/show_album.inc.php @@ -61,9 +61,11 @@ $title = scrub_out($album->name) . ' (' . $album->year . ') -- ' <div id="additional_information"> </div> +<div id="browse_content"> <?php - show_box_top($album->name . ' ' . _('Songs')); $object_ids = $album->get_songs(); - require Config::get('prefix') . '/templates/show_songs.inc.php'; - show_box_bottom(); + Browse::set_type('song'); + Browse::save_objects($object_ids); + Browse::show_objects($object_ids); ?> +</div> |