diff options
author | dave <dave@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-08-05 14:48:49 +0000 |
---|---|---|
committer | dave <dave@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-08-05 14:48:49 +0000 |
commit | 53d9997ba024244e2cd6f7ecd285a4ae3bef6517 (patch) | |
tree | a4494b7926a96f3da139b53e0697cbda5fa64b7e /mod/profile/actions | |
parent | 8d0fdaa33d0b37e409476d0e900b481d5c61c294 (diff) | |
download | elgg-53d9997ba024244e2cd6f7ecd285a4ae3bef6517.tar.gz elgg-53d9997ba024244e2cd6f7ecd285a4ae3bef6517.tar.bz2 |
largest avatar size changed from 600 to 550
git-svn-id: https://code.elgg.org/elgg/trunk@1710 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/profile/actions')
-rw-r--r-- | mod/profile/actions/iconupload.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mod/profile/actions/iconupload.php b/mod/profile/actions/iconupload.php index e4185809a..e4f6f7d4c 100644 --- a/mod/profile/actions/iconupload.php +++ b/mod/profile/actions/iconupload.php @@ -20,7 +20,7 @@ $small = get_resized_image_from_uploaded_file('profileicon',40,40, true);
$medium = get_resized_image_from_uploaded_file('profileicon',100,100, true);
$large = get_resized_image_from_uploaded_file('profileicon',200,200);
- $master = get_resized_image_from_uploaded_file('profileicon',600,600);
+ $master = get_resized_image_from_uploaded_file('profileicon',550,550);
if ($small !== false
&& $medium !== false
@@ -56,8 +56,8 @@ $_SESSION['user']->icontime = time();
- system_message(elgg_echo("profile:icon:uploaded")); - + system_message(elgg_echo("profile:icon:uploaded"));
+
trigger_elgg_event('profileiconupdate',$_SESSION['user']->type,$_SESSION['user']);
} else {
|