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/song.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/song.class.php')
-rw-r--r-- | lib/class/song.class.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/class/song.class.php b/lib/class/song.class.php index 4200ff2a..1dd7aa20 100644 --- a/lib/class/song.class.php +++ b/lib/class/song.class.php @@ -629,14 +629,14 @@ class Song { // Format the album name $this->f_album_full = $this->get_album_name(); - $this->f_album = truncate_with_ellipse($this->f_album_full,Config::get('ellipse_threshold_album')); + $this->f_album = truncate_with_ellipsis($this->f_album_full,Config::get('ellipse_threshold_album')); // Format the artist name $this->f_artist_full = $this->get_artist_name(); - $this->f_artist = truncate_with_ellipse($this->f_artist_full,Config::get('ellipse_threshold_artist')); + $this->f_artist = truncate_with_ellipsis($this->f_artist_full,Config::get('ellipse_threshold_artist')); // Format the title - $this->f_title = truncate_with_ellipse($this->title,Config::get('ellipse_threshold_title')); + $this->f_title = truncate_with_ellipsis($this->title,Config::get('ellipse_threshold_title')); // Create Links for the different objects $this->f_link = "<a href=\"" . Config::get('web_path') . "/stream.php?action=single_song&song_id=" . $this->id . "\">$this->f_title</a>"; |