diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-11-30 02:21:42 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-11-30 02:21:42 +0000 |
commit | efba396b2bc3c60504506b6c245a9fcd3b7c95f7 (patch) | |
tree | ca182f136de39ad25bb3f8d41b0c5e0b924b1751 /lib/class/artist.class.php | |
parent | f37409cbbf5e265beff95aa5a8ede513da5a8ed7 (diff) | |
download | ampache-efba396b2bc3c60504506b6c245a9fcd3b7c95f7.tar.gz ampache-efba396b2bc3c60504506b6c245a9fcd3b7c95f7.tar.bz2 ampache-efba396b2bc3c60504506b6c245a9fcd3b7c95f7.zip |
shorttags fix
Diffstat (limited to 'lib/class/artist.class.php')
-rw-r--r-- | lib/class/artist.class.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/class/artist.class.php b/lib/class/artist.class.php index b43d9c90..0681a0ab 100644 --- a/lib/class/artist.class.php +++ b/lib/class/artist.class.php @@ -188,7 +188,8 @@ class Artist { /* Combine prefix and name, trim then add ... if needed */ $name = htmlspecialchars(truncate_with_ellipse(trim($this->prefix . " " . $this->name))); $this->f_name = $this->name; - $this->full_name = htmlspecialchars(trim($this->prefix . " " . $this->name)); + //FIXME: This shouldn't be scrubing right here!!!! + $this->full_name = scrub_out(trim($this->prefix . " " . $this->name)); //FIXME: This shouldn't be set like this, f_name should be like this $this->link = "<a href=\"" . conf('web_path') . "/artists.php?action=show&artist=" . $this->id . "\" title=\"" . $this->full_name . "\">" . $name . "</a>"; $this->name = $this->link; |