diff options
author | Kevin James 'purdyk' Purdy <purdyk@gmail.com> | 2008-02-15 22:28:14 +0000 |
---|---|---|
committer | Kevin James 'purdyk' Purdy <purdyk@gmail.com> | 2008-02-15 22:28:14 +0000 |
commit | 4314b635f170c3ea41b1791e6fe1135fa6a67466 (patch) | |
tree | 83fd29ea3b9522fc6a28451340003d021beb319f /templates | |
parent | 2ac17f6c51b500fe62fc8e44cd347ddeb1c406a8 (diff) | |
download | ampache-4314b635f170c3ea41b1791e6fe1135fa6a67466.tar.gz ampache-4314b635f170c3ea41b1791e6fe1135fa6a67466.tar.bz2 ampache-4314b635f170c3ea41b1791e6fe1135fa6a67466.zip |
Fixed rss feeds to show proper length of song and artist names.
Diffstat (limited to 'templates')
-rw-r--r-- | templates/show_now_playing_row.inc.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/show_now_playing_row.inc.php b/templates/show_now_playing_row.inc.php index 4c80e462..afb5c3b7 100644 --- a/templates/show_now_playing_row.inc.php +++ b/templates/show_now_playing_row.inc.php @@ -20,9 +20,9 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /* Prepare the variables */ -$title = scrub_out(truncate_with_ellipsis($song->title,'25')); -$album = scrub_out(truncate_with_ellipsis($song->f_album_full,'25')); -$artist = scrub_out(truncate_with_ellipsis($song->f_artist_full,'25')); +$title = scrub_out(truncate_with_ellipsis($song->title)); +$album = scrub_out(truncate_with_ellipsis($song->f_album_full)); +$artist = scrub_out(truncate_with_ellipsis($song->f_artist_full)); ?> <div class="np_group"> <div class="np_cell cel_username"> |