diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-08-06 04:59:55 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-08-06 04:59:55 +0000 |
commit | 69b204fb1dcca77c177d3ac5ec7fb686fb5a5b58 (patch) | |
tree | 419bfea1ddff1df2569d3e652a94c2dcc653fded /lib/class/artist.class.php | |
parent | fe077220bf08ac7ad466e6fdfe88197c6d4ed56e (diff) | |
download | ampache-69b204fb1dcca77c177d3ac5ec7fb686fb5a5b58.tar.gz ampache-69b204fb1dcca77c177d3ac5ec7fb686fb5a5b58.tar.bz2 ampache-69b204fb1dcca77c177d3ac5ec7fb686fb5a5b58.zip |
Added checking for local similars
Diffstat (limited to 'lib/class/artist.class.php')
-rw-r--r-- | lib/class/artist.class.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/class/artist.class.php b/lib/class/artist.class.php index 15258e66..b857c7b7 100644 --- a/lib/class/artist.class.php +++ b/lib/class/artist.class.php @@ -212,6 +212,7 @@ class Artist { if ($this->_fake) { return true; } $this->f_name_link = "<a href=\"" . Config::get('web_path') . "/artists.php?action=show&artist=" . $this->id . "\" title=\"" . $this->full_name . "\">" . $name . "</a>"; + $this->f_link = Config::get('web_path') . '/artists.php?action=show&artist=' . $this->id; // Get the counts $this->get_count(); |