summaryrefslogtreecommitdiffstats
path: root/lib/class/artist.class.php
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2006-11-30 02:21:42 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2006-11-30 02:21:42 +0000
commitefba396b2bc3c60504506b6c245a9fcd3b7c95f7 (patch)
treeca182f136de39ad25bb3f8d41b0c5e0b924b1751 /lib/class/artist.class.php
parentf37409cbbf5e265beff95aa5a8ede513da5a8ed7 (diff)
downloadampache-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.php3
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&amp;artist=" . $this->id . "\" title=\"" . $this->full_name . "\">" . $name . "</a>";
$this->name = $this->link;