]> gitweb.fluxo.info Git - lorea/elgg.git/commitdiff
Refs #3557: Upscaling small icons to 200x200. This doesn't fix the problem if someone...
authorBrett Profitt <brett.profitt@gmail.com>
Wed, 24 Aug 2011 22:34:24 +0000 (15:34 -0700)
committerBrett Profitt <brett.profitt@gmail.com>
Wed, 24 Aug 2011 22:34:24 +0000 (15:34 -0700)
actions/avatar/upload.php

index e21aa49c8ec2a1f79b6e6598768ced891e71603e..19976ea873b076eb4ed7f366d17f3d5970c1e25a 100644 (file)
@@ -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)
 );