diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-11-23 02:48:17 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-11-23 02:48:17 +0000 |
commit | 4ba95f6d9b85746a5fdae7e9847f096d7d223f02 (patch) | |
tree | 9d04c2e356ae7136b5ae08d0ecc50e6d150568fd /mod/profile/actions/iconupload.php | |
parent | f7b596b2d27c048df50b9e1b772e7c4aae55be9f (diff) | |
download | elgg-4ba95f6d9b85746a5fdae7e9847f096d7d223f02.tar.gz elgg-4ba95f6d9b85746a5fdae7e9847f096d7d223f02.tar.bz2 |
Fixes #2418 and merges [7121] into trunk
git-svn-id: http://code.elgg.org/elgg/trunk@7427 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/profile/actions/iconupload.php')
-rw-r--r-- | mod/profile/actions/iconupload.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/profile/actions/iconupload.php b/mod/profile/actions/iconupload.php index f146316f0..d0a3cf28a 100644 --- a/mod/profile/actions/iconupload.php +++ b/mod/profile/actions/iconupload.php @@ -24,7 +24,7 @@ $icon_sizes = array( '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), - 'master' => array('w'=>1600, 'h'=>1600, 'square'=>FALSE, 'upscale'=>FALSE) + 'master' => array('w'=>550, 'h'=>550, 'square'=>FALSE, 'upscale'=>FALSE) ); // get the images and save their file handlers into an array |