diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-04-11 02:35:32 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-04-11 02:35:32 +0000 |
commit | 0b733c05eed503ba8c00443a77ec45664b81ce28 (patch) | |
tree | af833a908d8b286e7808bbe4257e3742cee963aa /lib/class/artist.class.php | |
parent | e1813f532f7ab0ad82b829ba4034181236e0f5ba (diff) | |
download | ampache-0b733c05eed503ba8c00443a77ec45664b81ce28.tar.gz ampache-0b733c05eed503ba8c00443a77ec45664b81ce28.tar.bz2 ampache-0b733c05eed503ba8c00443a77ec45664b81ce28.zip |
new flash player that still does not work, fixed some bad references to the ellipsis thresholds
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 057ec549..38361194 100644 --- a/lib/class/artist.class.php +++ b/lib/class/artist.class.php @@ -223,7 +223,7 @@ class Artist { public function format() { /* Combine prefix and name, trim then add ... if needed */ - $name = truncate_with_ellipsis(trim($this->prefix . " " . $this->name),Config::get('ellipsis_threshold_artist')); + $name = truncate_with_ellipsis(trim($this->prefix . " " . $this->name),Config::get('ellipse_threshold_artist')); $this->f_name = $name; $this->f_full_name = trim($this->prefix . " " . $this->name); |