diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2009-05-11 10:44:08 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2009-05-11 10:44:08 +0000 |
commit | 34191945a49321badb7d4c15f2d804564d40055b (patch) | |
tree | 8d6511a1802eb87d6ebf1c2ea8cf6b8a3d62a09a /templates/show_song_row.inc.php | |
parent | b0100f954d48cf7abcfdea9cc8af7b44e47cfd49 (diff) | |
download | ampache-34191945a49321badb7d4c15f2d804564d40055b.tar.gz ampache-34191945a49321badb7d4c15f2d804564d40055b.tar.bz2 ampache-34191945a49321badb7d4c15f2d804564d40055b.zip |
fix missing > on show song row
Diffstat (limited to 'templates/show_song_row.inc.php')
-rw-r--r-- | templates/show_song_row.inc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/show_song_row.inc.php b/templates/show_song_row.inc.php index 671f7db4..ced97748 100644 --- a/templates/show_song_row.inc.php +++ b/templates/show_song_row.inc.php @@ -22,7 +22,7 @@ <td class="cel_add"> <?php echo Ajax::button('?action=basket&type=song&id=' . $song->id,'add',_('Add'),'add_' . $song->id); ?> </td> -<td class="cel_song"><a href="<?php echo Song::play_url($song->id); ?>" title="<?php echo scrub_out($song->title); ?>"><?php echo $song->f_title; ?></a></td +<td class="cel_song"><a href="<?php echo Song::play_url($song->id); ?>" title="<?php echo scrub_out($song->title); ?>"><?php echo $song->f_title; ?></a></td> <td class="cel_artist"><?php echo $song->f_artist_link; ?></td> <td class="cel_album"><?php echo $song->f_album_link; ?></td> <td class="cel_tags"><?php echo $song->f_tags; ?></td> |