diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-07-22 18:32:09 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-07-22 18:32:09 +0000 |
commit | ff606dbefca94580b56a081c5d3089037a2d033d (patch) | |
tree | bdc9cb8ea8d3b5d8e9b1ebe313ce163990a75d0c /lib/class/artist.class.php | |
parent | 472072028560aa178211ae248fc0dad4526533c7 (diff) | |
download | ampache-ff606dbefca94580b56a081c5d3089037a2d033d.tar.gz ampache-ff606dbefca94580b56a081c5d3089037a2d033d.tar.bz2 ampache-ff606dbefca94580b56a081c5d3089037a2d033d.zip |
removed some old/legacy functions fixed download and merged it into the /play
Diffstat (limited to 'lib/class/artist.class.php')
-rw-r--r-- | lib/class/artist.class.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/class/artist.class.php b/lib/class/artist.class.php index eb18b539..3de53153 100644 --- a/lib/class/artist.class.php +++ b/lib/class/artist.class.php @@ -183,7 +183,7 @@ class Artist { public function format() { /* Combine prefix and name, trim then add ... if needed */ - $name = truncate_with_ellipse(trim($this->prefix . " " . $this->name)); + $name = truncate_with_ellipsis(trim($this->prefix . " " . $this->name)); $this->f_name = $name; //FIXME: This shouldn't be scrubing right here!!!! |