From 9988fa588132704d7b54400e4ef1feeadbe0a390 Mon Sep 17 00:00:00 2001 From: Brett Profitt Date: Wed, 24 Aug 2011 15:34:24 -0700 Subject: Refs #3557: Upscaling small icons to 200x200. This doesn't fix the problem if someone uploads a 100x200 image. --- actions/avatar/upload.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'actions/avatar/upload.php') diff --git a/actions/avatar/upload.php b/actions/avatar/upload.php index e21aa49c8..19976ea87 100644 --- a/actions/avatar/upload.php +++ b/actions/avatar/upload.php @@ -17,7 +17,7 @@ $icon_sizes = array( 'tiny' => array('w'=>25, 'h'=>25, 'square'=>TRUE, 'upscale'=>TRUE), 'small' => array('w'=>40, 'h'=>40, 'square'=>TRUE, 'upscale'=>TRUE), 'medium' => array('w'=>100, 'h'=>100, 'square'=>TRUE, 'upscale'=>TRUE), - 'large' => array('w'=>200, 'h'=>200, 'square'=>FALSE, 'upscale'=>FALSE), + 'large' => array('w'=>200, 'h'=>200, 'square'=>FALSE, 'upscale'=>TRUE), 'master' => array('w'=>550, 'h'=>550, 'square'=>FALSE, 'upscale'=>FALSE) ); -- cgit v1.2.3