diff options
author | pb1dft <pb1dft@ampache> | 2006-11-13 17:48:51 +0000 |
---|---|---|
committer | pb1dft <pb1dft@ampache> | 2006-11-13 17:48:51 +0000 |
commit | 095bc809d6ad3149fb5fe8e5bce32e2865e62f3d (patch) | |
tree | 5e6696767173d5742a9e445779ba81ed56d9446d /albumart.php | |
parent | 868f2b2a2029ea3453e6ef219c96e8bfeb6097e7 (diff) | |
download | ampache-095bc809d6ad3149fb5fe8e5bce32e2865e62f3d.tar.gz ampache-095bc809d6ad3149fb5fe8e5bce32e2865e62f3d.tar.bz2 ampache-095bc809d6ad3149fb5fe8e5bce32e2865e62f3d.zip |
Added new flash player and fixed a lot of other problems. Implemented Export to ItunesDB
Diffstat (limited to 'albumart.php')
-rw-r--r-- | albumart.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/albumart.php b/albumart.php index af603a71..6905a3f2 100644 --- a/albumart.php +++ b/albumart.php @@ -31,6 +31,7 @@ require('lib/init.php'); /* Decide what size this image is */ switch ($_REQUEST['thumb']) { case '1': + /* This is used by the now_playing stuff */ $size['height'] = '75'; $size['width'] = '75'; break; @@ -38,6 +39,12 @@ switch ($_REQUEST['thumb']) { $size['height'] = '128'; $size['width'] = '128'; break; + case '3': + /* This is used by the flash player */ + $size['height'] = '80'; + $size['width'] = '80'; + break; + default: $size['height'] = '275'; $size['width'] = '275'; |