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_album.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_album.inc')
-rw-r--r-- | templates/show_album.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/show_album.inc b/templates/show_album.inc index 425aacff..cdf764f6 100644 --- a/templates/show_album.inc +++ b/templates/show_album.inc @@ -43,7 +43,7 @@ $user = new User($_SESSION['userdata']['username']); <?php if ($album_name != "Unknown (Orphaned)") { echo "<a target=\"_blank\" href=\"" . conf('web_path') . "/albumart.php?id=" . $album->id . "\">"; - echo "<img border=\"0\" src=\"" . conf('web_path') . "/albumart.php?id=" . $album->id . "\" alt=\"Album Art\" height=\"128\" />"; + echo "<img border=\"0\" src=\"" . conf('web_path') . "/albumart.php?id=" . $album->id . "&thumb=2\" alt=\"Album Art\" height=\"128\" />"; echo "</a>\n"; } ?> |