diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-01-03 21:08:29 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-01-03 21:08:29 +0000 |
commit | 1e711449f77825983a3fe04f6fef2c61c4fa989d (patch) | |
tree | 751c085586f85382e2ec5dfdb6d82a3de9af5b9c /templates/show_now_playing_row.inc.php | |
parent | a95d696db3b6ad263497664b9dca15765c1f62c3 (diff) | |
download | ampache-1e711449f77825983a3fe04f6fef2c61c4fa989d.tar.gz ampache-1e711449f77825983a3fe04f6fef2c61c4fa989d.tar.bz2 ampache-1e711449f77825983a3fe04f6fef2c61c4fa989d.zip |
fixed title text on now playing to show full title rather then truncated
Diffstat (limited to 'templates/show_now_playing_row.inc.php')
-rw-r--r-- | templates/show_now_playing_row.inc.php | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/templates/show_now_playing_row.inc.php b/templates/show_now_playing_row.inc.php index a0ab25f1..3fb4c794 100644 --- a/templates/show_now_playing_row.inc.php +++ b/templates/show_now_playing_row.inc.php @@ -5,9 +5,8 @@ Copyright (c) 2001 - 2006 Ampache.org All rights reserved. This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License -as published by the Free Software Foundation; either version 2 -of the License, or (at your option) any later version. +modify it under the terms of the GNU General Public License v2 +as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -33,9 +32,9 @@ $artist = scrub_out(truncate_with_ellipse($song->f_artist_full,'25')); </a> </td> <td class="np_cell"> - <a title="<?php echo scrub_out($song->album_full); ?>" href="<?php echo $web_path; ?>/albums.php?action=show&album=<?php echo $song->album; ?>"> + <a title="<?php echo scrub_out($song->f_album_full); ?>" href="<?php echo $web_path; ?>/albums.php?action=show&album=<?php echo $song->album; ?>"> <?php echo $album; ?></a> / - <a title="<?php echo scrub_out($song->artist_full); ?>" href="<?php echo $web_path; ?>/artists.php?action=show&artist=<?php echo $song->artist; ?>"> + <a title="<?php echo scrub_out($song->f_artist_full); ?>" href="<?php echo $web_path; ?>/artists.php?action=show&artist=<?php echo $song->artist; ?>"> <?php echo $artist; ?> </a> </td> |