summaryrefslogtreecommitdiffstats
path: root/templates/show_artist.inc.php
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2007-09-17 03:11:06 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2007-09-17 03:11:06 +0000
commit88562955f9c96d8d347acc8c12cdf33adab04f94 (patch)
treead90a912041f32aeeef6fb662ad4d91c67c34c0b /templates/show_artist.inc.php
parentd1dcfcbc903153007fff2c155248046ecfbdc76a (diff)
downloadampache-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_artist.inc.php')
-rw-r--r--templates/show_artist.inc.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/templates/show_artist.inc.php b/templates/show_artist.inc.php
index ae5d5006..9c598c08 100644
--- a/templates/show_artist.inc.php
+++ b/templates/show_artist.inc.php
@@ -25,5 +25,9 @@ require Config::get('prefix') . '/templates/show_artist_box.inc.php';
?>
<div id="browse_content">
-<?php Browse::set_type('album'); Browse::show_objects($albums); ?>
+<?php
+ Browse::set_type('album');
+ Browse::save_objects($albums);
+ Browse::show_objects($albums);
+?>
</div>