diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-04-02 08:14:21 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-04-02 08:14:21 +0000 |
commit | 05e6d947be96664074d95f9d6f4635415186ecac (patch) | |
tree | 6df88ea49db571474efa88af09fe21e088b59f5a /templates/show_now_playing.inc | |
parent | 864a32a3287df06f4b1e4fb5a422b699562ab4e9 (diff) | |
download | ampache-05e6d947be96664074d95f9d6f4635415186ecac.tar.gz ampache-05e6d947be96664074d95f9d6f4635415186ecac.tar.bz2 ampache-05e6d947be96664074d95f9d6f4635415186ecac.zip |
fixed a problem I introduced by unfudging the song.php file
Diffstat (limited to 'templates/show_now_playing.inc')
-rw-r--r-- | templates/show_now_playing.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/show_now_playing.inc b/templates/show_now_playing.inc index a970dd9b..9aff071c 100644 --- a/templates/show_now_playing.inc +++ b/templates/show_now_playing.inc @@ -57,7 +57,7 @@ foreach ($results as $item) { </td> <td width="30%"> <div id="np_song_<?php echo $c; ?>"> - <a title="<?php echo scrub_out($song->f_title); ?>" href="<?php echo $web_path; ?>/song.php?action=m3u&song=<?php echo $song->id; ?>"> + <a title="<?php echo scrub_out($song->f_title); ?>" href="<?php echo $web_path; ?>/song.php?action=single_song&song_id=<?php echo $song->id; ?>"> <?php echo $song->f_title; ?> </a> </div> |