diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2009-03-09 22:31:24 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2009-03-09 22:31:24 +0000 |
commit | 80e16c888b961c95bcb5968b1534f3c61f53381c (patch) | |
tree | 5f0573bc074a99d26b3c9e93912572d3abebcc50 /lib/class/album.class.php | |
parent | e4ad47579a65dadf9da009b525bf28c42bc7623a (diff) | |
download | ampache-80e16c888b961c95bcb5968b1534f3c61f53381c.tar.gz ampache-80e16c888b961c95bcb5968b1534f3c61f53381c.tar.bz2 ampache-80e16c888b961c95bcb5968b1534f3c61f53381c.zip |
add tags to the artist and album xml documents
Diffstat (limited to 'lib/class/album.class.php')
-rw-r--r-- | lib/class/album.class.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/class/album.class.php b/lib/class/album.class.php index 91ea480a..c68fa587 100644 --- a/lib/class/album.class.php +++ b/lib/class/album.class.php @@ -262,6 +262,8 @@ class Album extends database_object { } $tags = Tag::get_top_tags('album',$this->id); + $this->tags = $tags; + $this->f_tags = Tag::get_display($tags,$this->id,'album'); |