diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-01-03 23:32:56 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-01-03 23:32:56 +0000 |
commit | 560dbe70f23b4353b5d98736fb16dd088d4f269a (patch) | |
tree | ef0f474385042c7e10ef7ebbebd1958f44949a58 /templates/show_songs.inc | |
parent | 1e711449f77825983a3fe04f6fef2c61c4fa989d (diff) | |
download | ampache-560dbe70f23b4353b5d98736fb16dd088d4f269a.tar.gz ampache-560dbe70f23b4353b5d98736fb16dd088d4f269a.tar.bz2 ampache-560dbe70f23b4353b5d98736fb16dd088d4f269a.zip |
fixed a missing action on show songs so that single album clicks failed
Diffstat (limited to 'templates/show_songs.inc')
-rw-r--r-- | templates/show_songs.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/show_songs.inc b/templates/show_songs.inc index 3f97552f..a88b7708 100644 --- a/templates/show_songs.inc +++ b/templates/show_songs.inc @@ -109,7 +109,7 @@ foreach ($song_ids as $song_id) { <a href="<?php echo $web_path; ?>/artists.php?action=show&artist=<?php echo scrub_out($song->artist); ?>" title="<?php echo scrub_out($song->f_artist_full); ?>" <?php echo $text_class; ?>><?php echo scrub_out($song->f_artist); ?></a> </td> <td> - <a href="<?php echo $web_path; ?>/albums.php?album=<?php echo scrub_out($song->album); ?>" title="<?php echo scrub_out($song->f_album_full); ?>" <?php echo $text_class; ?>><?php echo scrub_out($song->f_album); ?></a> + <a href="<?php echo $web_path; ?>/albums.php?action=show&album=<?php echo scrub_out($song->album); ?>" title="<?php echo scrub_out($song->f_album_full); ?>" <?php echo $text_class; ?>><?php echo scrub_out($song->f_album); ?></a> </td> <td align="right"> <?php echo $song->track; ?> |