diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2005-07-31 06:54:08 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2005-07-31 06:54:08 +0000 |
commit | 5f3a6de6d6e57187f9644c3d3922e3947a6f7676 (patch) | |
tree | e6102a957455aa422bb5544fadcd9cce5c315a7c /templates/show_now_playing.inc | |
parent | d00c637d49cd12f8adbd56774267c7e90278374c (diff) | |
download | ampache-5f3a6de6d6e57187f9644c3d3922e3947a6f7676.tar.gz ampache-5f3a6de6d6e57187f9644c3d3922e3947a6f7676.tar.bz2 ampache-5f3a6de6d6e57187f9644c3d3922e3947a6f7676.zip |
added automatic image resizing, defaults to off
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 62f04c72..f8821fdc 100644 --- a/templates/show_now_playing.inc +++ b/templates/show_now_playing.inc @@ -49,7 +49,7 @@ if (conf('play_album_art')) { echo "\t<td align=\"center\">"; echo "<a target=\"_blank\" href=\"" . conf('web_path') . "/albumart.php?id=" . $song->album . "\">"; - echo "<img align=\"middle\" border=\"0\" src=\"" . conf('web_path') . "/albumart.php?id=" . $song->album . "&fast=1\" alt=\"Album Art\" height=\"75\" />"; + 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"; echo "</tr>\n"; |