diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2009-04-24 12:40:35 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2009-04-24 12:40:35 +0000 |
commit | 0933a6b089bbc0ddac43661b29b95cca4532db76 (patch) | |
tree | 56453ebc9bc7a839007929c7b4599652fa6a52d0 | |
parent | 39108c662b8935447b5243d47672d5374c9b6c2e (diff) | |
download | ampache-0933a6b089bbc0ddac43661b29b95cca4532db76.tar.gz ampache-0933a6b089bbc0ddac43661b29b95cca4532db76.tar.bz2 ampache-0933a6b089bbc0ddac43661b29b95cca4532db76.zip |
fix it so pop-up of album art is full rez
-rwxr-xr-x | docs/CHANGELOG | 2 | ||||
-rw-r--r-- | image.php | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/docs/CHANGELOG b/docs/CHANGELOG index b5bc0e80..e18303be 100755 --- a/docs/CHANGELOG +++ b/docs/CHANGELOG @@ -4,6 +4,8 @@ -------------------------------------------------------------------------- v.3.5 + - Fix an issue where the full version of the album art was never + used even when requested - Fix maxlength on acl fields being to small for all IPv6 addresses - Add error message when file exists but is unreadable do not remove unreadable songs from catalog @@ -57,7 +57,7 @@ switch ($_REQUEST['thumb']) { default: $size['height'] = '275'; $size['width'] = '275'; - // $return_raw = true; + if (!isset($_REQUEST['thumb'])) { $return_raw = true; } break; } // define size based on thumbnail |