summaryrefslogtreecommitdiffstats
path: root/image.php
diff options
context:
space:
mode:
authorStephen Shkardoon <ss23@ss23.geek.nz>2013-08-05 03:13:00 +1200
committerPaul Arthur <paul.arthur@flowerysong.com>2013-09-20 11:53:27 -0400
commit6f05b3d4364bc0af5e6777e821c46f46773313df (patch)
tree581313b48068ad4a5c2f917112e23b7d1fd8464d /image.php
parenta201a05d067b7beb191b5e2ce660dabd3c137560 (diff)
downloadampache-6f05b3d4364bc0af5e6777e821c46f46773313df.tar.gz
ampache-6f05b3d4364bc0af5e6777e821c46f46773313df.tar.bz2
ampache-6f05b3d4364bc0af5e6777e821c46f46773313df.zip
Enable a size for HTML5 Player sized albumart
Diffstat (limited to 'image.php')
-rw-r--r--image.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/image.php b/image.php
index 00bf1092..1f87dae4 100644
--- a/image.php
+++ b/image.php
@@ -64,6 +64,11 @@ switch ($_GET['thumb']) {
$size['height'] = '80';
$size['width'] = '80';
break;
+ case '4':
+ /* HTML5 Player size */
+ $size['height'] = 200;
+ $size['width'] = 200; // 200px width, set via CSS
+ break;
default:
$size['height'] = '275';
$size['width'] = '275';