diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-05-12 07:35:27 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-05-12 07:35:27 +0000 |
commit | 5678d78c06e1a5ae021f41147e893b48bc2f9e1e (patch) | |
tree | 950e89edc94adecc5c62ac7eb3635c3e8f401549 /templates/show_artist.inc.php | |
parent | b69c3a0ec66997f9045c9fbecada3e38da55c3dd (diff) | |
download | ampache-5678d78c06e1a5ae021f41147e893b48bc2f9e1e.tar.gz ampache-5678d78c06e1a5ae021f41147e893b48bc2f9e1e.tar.bz2 ampache-5678d78c06e1a5ae021f41147e893b48bc2f9e1e.zip |
renamed the tagcloud class to tag, started moving things around not sure where I like the taglist, seems weird in its own box
Diffstat (limited to 'templates/show_artist.inc.php')
-rw-r--r-- | templates/show_artist.inc.php | 18 |
1 files changed, 4 insertions, 14 deletions
diff --git a/templates/show_artist.inc.php b/templates/show_artist.inc.php index cbb38ce0..0cc28b58 100644 --- a/templates/show_artist.inc.php +++ b/templates/show_artist.inc.php @@ -1,7 +1,7 @@ <?php /* - Copyright (c) 2001 - 2007 Ampache.org + Copyright (c) Ampache.org All rights reserved. This program is free software; you can redistribute it and/or @@ -18,23 +18,13 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ - -$web_path = Config::get('web_path'); - require Config::get('prefix') . '/templates/show_artist_box.inc.php'; -//require Config::get('prefix') . '/templates/show_artist_tagcloud.inc.php'; ?> <?php Browse::reset_filters(); Browse::set_type('album'); - //Browse::set_filter('artist', $artist->id); - Browse::set_filter_from_request($_REQUEST); - $objs = Browse::get_objects(); - if (sizeof($objs)) { - $tagcloudHead = _('Tags for albums of') . ' ' . $artist->f_name; - $taglist = TagCloud::get_tags('album', $objs); - $tagcloudList = TagCloud::filter_with_prefs($taglist); - require Config::get('prefix') . '/templates/show_tagcloud.inc.php'; - } + Browse::set_static_content(1); + Browse::save_objects($albums); + $taglist = Tag::get_many_tags('album', $object_ids); Browse::show_objects(); ?> |