diff options
author | Paul Arthur <paul.arthur@flowerysong.com> | 2012-04-13 17:59:16 -0400 |
---|---|---|
committer | Paul Arthur <paul.arthur@flowerysong.com> | 2012-04-13 17:59:16 -0400 |
commit | 512f77a70c9db8bb4a24b80c6ed018be9857c885 (patch) | |
tree | 8bd9138bbe120944835696121d4d0c8196bd76ec /lib/class/song.class.php | |
parent | 8af2544b279b62cac287784840d26ff72568e9c5 (diff) | |
download | ampache-512f77a70c9db8bb4a24b80c6ed018be9857c885.tar.gz ampache-512f77a70c9db8bb4a24b80c6ed018be9857c885.tar.bz2 ampache-512f77a70c9db8bb4a24b80c6ed018be9857c885.zip |
Support setting a custom format for the rss feed
Diffstat (limited to 'lib/class/song.class.php')
-rw-r--r-- | lib/class/song.class.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/class/song.class.php b/lib/class/song.class.php index e2ddfbf1..6529bde2 100644 --- a/lib/class/song.class.php +++ b/lib/class/song.class.php @@ -701,6 +701,7 @@ class Song extends database_object implements media { $this->f_artist = truncate_with_ellipsis($this->f_artist_full,Config::get('ellipse_threshold_artist')); // Format the title + $this->f_title_full = $this->title; $this->f_title = truncate_with_ellipsis($this->title,Config::get('ellipse_threshold_title')); // Create Links for the different objects |