diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2005-12-31 09:04:30 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2005-12-31 09:04:30 +0000 |
commit | 621f007155dc1e3a8a5b916e246018df4a25d4f3 (patch) | |
tree | c3f987cc3d43d8fdfac0680fd23cd3695fbac30a /templates/show_now_playing.inc | |
parent | fe4774127f292ce94ab79771bc72cbb7ca4db371 (diff) | |
download | ampache-621f007155dc1e3a8a5b916e246018df4a25d4f3.tar.gz ampache-621f007155dc1e3a8a5b916e246018df4a25d4f3.tar.bz2 ampache-621f007155dc1e3a8a5b916e246018df4a25d4f3.zip |
add album art pop-up mojo from Di-Fosfor
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 d4df9dc2..22422388 100644 --- a/templates/show_now_playing.inc +++ b/templates/show_now_playing.inc @@ -61,7 +61,7 @@ echo "\t<a title=\"" . htmlspecialchars($album) . "\" href=\"$web_path/albums.php?action=show&album=$song->album\">$song->f_album</a></td>"; if (conf('play_album_art')) { echo "\t<td align=\"center\">"; - echo "<a target=\"_blank\" href=\"" . conf('web_path') . "/albumart.php?id=" . $song->album . "\">"; + echo "<a target=\"_blank\" href=\"" . conf('web_path') . "/albumart.php?id=" . $song->album . "&type=popup\">"; echo "<img align=\"middle\" border=\"0\" src=\"" . conf('web_path') . "/albumart.php?id=" . $song->album . "&fast=1&thumb=1\" alt=\"Album Art\" height=\"75\" />"; echo "</a>\n"; echo "\t</td>\n"; |