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_box.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_box.inc.php')
-rw-r--r-- | templates/show_artist_box.inc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/show_artist_box.inc.php b/templates/show_artist_box.inc.php index 7968eb11..18fa687d 100644 --- a/templates/show_artist_box.inc.php +++ b/templates/show_artist_box.inc.php @@ -34,7 +34,7 @@ if (Config::get('ratings')) { <div id="information_actions"> Tags: <?php - $tags = TagCloud::get_tags('artist', array($artist->id)); + $tags = Tag::get_object_tags('artist', $artist->id); foreach($tags as $i) echo ($i['name']) . ' '; ?> |