summaryrefslogtreecommitdiffstats
path: root/lib/class/artist.class.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/class/artist.class.php')
-rw-r--r--lib/class/artist.class.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/class/artist.class.php b/lib/class/artist.class.php
index 75a415ca..a5261b10 100644
--- a/lib/class/artist.class.php
+++ b/lib/class/artist.class.php
@@ -239,8 +239,9 @@ class Artist extends database_object {
$this->f_time = ltrim($hours . ':' . $min . ':' . $sec,'0:');
- $tags = Tag::get_top_tags('artist',$this->id);
- $this->f_tags = Tag::get_display($tags,$this->id,'artist');
+ $this->tags = Tag::get_top_tags('artist',$this->id);
+
+ $this->f_tags = Tag::get_display($this->tags,$this->id,'artist');
return true;