diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-12-26 04:32:08 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-12-26 04:32:08 +0000 |
commit | 97c78343ae899e59226ecbeb88dc4805b5ddc751 (patch) | |
tree | 500c4e90ddfe0c245cb7b30050d59fa1de6488e8 /templates/show_album.inc.php | |
parent | 00417ad9658bd68f347f45e1ef8c5327fed95648 (diff) | |
download | ampache-97c78343ae899e59226ecbeb88dc4805b5ddc751.tar.gz ampache-97c78343ae899e59226ecbeb88dc4805b5ddc751.tar.bz2 ampache-97c78343ae899e59226ecbeb88dc4805b5ddc751.zip |
two file pattern fixes and some more work on the flagged stuff as well as some minor cleanup on the album art links
Diffstat (limited to 'templates/show_album.inc.php')
-rw-r--r-- | templates/show_album.inc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/show_album.inc.php b/templates/show_album.inc.php index 4bfd05e7..45cb95bc 100644 --- a/templates/show_album.inc.php +++ b/templates/show_album.inc.php @@ -31,7 +31,7 @@ $title = scrub_out($album->name) . ' (' . $album->year . ') -- ' if ($album_name != _('Unknown (Orphaned)')) { $aa_url = $web_path . "/image.php?id=" . $album->id . "&type=popup&sid=" . session_id(); echo "<a target=\"_blank\" href=\"$aa_url\" onclick=\"popup_art('$aa_url'); return false;\">"; - echo "<img src=\"" . $web_path . "/image.php?id=" . $album->id . "&thumb=2&sid=" . session_id() . "\" alt=\"Album Art\" height=\"128\" />"; + echo "<img src=\"" . $web_path . "/image.php?id=" . $album->id . "&thumb=2\" alt=\"Album Art\" height=\"128\" width=\"128\" />"; echo "</a>\n"; } ?> |