summaryrefslogtreecommitdiffstats
path: root/templates/show_song_row.inc.php
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2009-04-09 15:31:36 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2009-04-09 15:31:36 +0000
commit09f36356bc1445c7ada92b7c84f8640f309352a3 (patch)
tree76ddb42016fc51a9e21ed9bdf5aae11e3a7ce35e /templates/show_song_row.inc.php
parente92db64da3f8eb11acb94bc1c7ee6fa3b3174f22 (diff)
downloadampache-09f36356bc1445c7ada92b7c84f8640f309352a3.tar.gz
ampache-09f36356bc1445c7ada92b7c84f8640f309352a3.tar.bz2
ampache-09f36356bc1445c7ada92b7c84f8640f309352a3.zip
fix missing title tag on song browse -> title (Thx flowerysong)
Diffstat (limited to 'templates/show_song_row.inc.php')
-rw-r--r--templates/show_song_row.inc.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/show_song_row.inc.php b/templates/show_song_row.inc.php
index 55b99ff3..671f7db4 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); ?>"><?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>