summaryrefslogtreecommitdiffstats
path: root/lib/class/artist.class.php
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2008-04-11 02:35:32 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2008-04-11 02:35:32 +0000
commit0b733c05eed503ba8c00443a77ec45664b81ce28 (patch)
treeaf833a908d8b286e7808bbe4257e3742cee963aa /lib/class/artist.class.php
parente1813f532f7ab0ad82b829ba4034181236e0f5ba (diff)
downloadampache-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.php2
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);