summaryrefslogtreecommitdiffstats
path: root/templates/list_duplicates.inc
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2006-04-02 08:14:21 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2006-04-02 08:14:21 +0000
commit05e6d947be96664074d95f9d6f4635415186ecac (patch)
tree6df88ea49db571474efa88af09fe21e088b59f5a /templates/list_duplicates.inc
parent864a32a3287df06f4b1e4fb5a422b699562ab4e9 (diff)
downloadampache-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/list_duplicates.inc')
-rw-r--r--templates/list_duplicates.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/list_duplicates.inc b/templates/list_duplicates.inc
index c96058c4..f694c332 100644
--- a/templates/list_duplicates.inc
+++ b/templates/list_duplicates.inc
@@ -50,7 +50,7 @@ if ($flags) { ?>
foreach ($dinfolist as $dinfo) {
echo "<tr class=\"".flip_class()."\">".
"<td><input type=\"checkbox\" name=\"song_ids[]\" value=\"" . $dinfo['songid'] . "\" /></td>".
- "<td><a href=\"".$web_path."/song.php?action=m3u&amp;song=$song->id\">".scrub_out($formated_title)."</a> </td>".
+ "<td><a href=\"".$web_path."/song.php?action=single_song&amp;song_id=$song->id\">".scrub_out($formated_title)."</a> </td>".
"<td><a href=\"".$web_path."/artists.php?action=show&amp;artist=".$dinfo['artistid']."\" title=\"".scrub_out($dinfo['artist'])."\">".scrub_out($dinfo['artist'])."</a> </td>".
"<td><a href=\"".$web_path."/albums.php?action=show&amp;album=".$dinfo['albumid']."\" title=\"".scrub_out($dinfo['album'])."\">".scrub_out($dinfo['album'])."</a> </td>".
"<td>".floor($dinfo['time']/60).":".sprintf("%02d", ($dinfo['time']%60) )."</td>".