diff options
author | Paul 'flowerysong' Arthur <flowerysong00@yahoo.com> | 2010-06-17 06:10:57 +0000 |
---|---|---|
committer | Paul 'flowerysong' Arthur <flowerysong00@yahoo.com> | 2010-06-17 06:10:57 +0000 |
commit | 64910341545ac317782dba8d9d8b23f9a0372e76 (patch) | |
tree | 768a4619b519059735275385ec32ff2ca3258ccd /lib/class/album.class.php | |
parent | ecd41dd4bbae5bb0dfcb3aa440a3a57f2e32c206 (diff) | |
download | ampache-64910341545ac317782dba8d9d8b23f9a0372e76.tar.gz ampache-64910341545ac317782dba8d9d8b23f9a0372e76.tar.bz2 ampache-64910341545ac317782dba8d9d8b23f9a0372e76.zip |
Add missing scrub_out; fixes some display issues.
Diffstat (limited to 'lib/class/album.class.php')
-rw-r--r-- | lib/class/album.class.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/class/album.class.php b/lib/class/album.class.php index b033bde4..19774096 100644 --- a/lib/class/album.class.php +++ b/lib/class/album.class.php @@ -230,7 +230,7 @@ class Album extends database_object { /* Truncate the string if it's to long */ $this->f_name = truncate_with_ellipsis($this->full_name,Config::get('ellipse_threshold_album')); - $this->f_name_link = "<a href=\"$web_path/albums.php?action=show&album=" . scrub_out($this->id) . "\" title=\"" . scrub_out($this->full_name) . "\">" . $this->f_name; + $this->f_name_link = "<a href=\"$web_path/albums.php?action=show&album=" . scrub_out($this->id) . "\" title=\"" . scrub_out($this->full_name) . "\">" . scrub_out($this->f_name); // If we've got a disk append it if ($this->disk) { $this->f_name_link .= " <span class=\"discnb disc" .$this->disk. "\">[" . _('Disk') . " " . $this->disk . "]</span>"; |