aboutsummaryrefslogtreecommitdiff
path: root/mod/profile
diff options
context:
space:
mode:
authorben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-06-24 09:10:54 +0000
committerben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-06-24 09:10:54 +0000
commit50318370acf9ee42604f1debabdfa8b7f2f970ae (patch)
tree70ac1d39caa55b64a8cc74e87a4dd8bca55838a8 /mod/profile
parent9e75564ea612baf6cf00d6628ad5bca50b20ce09 (diff)
downloadelgg-50318370acf9ee42604f1debabdfa8b7f2f970ae.tar.gz
elgg-50318370acf9ee42604f1debabdfa8b7f2f970ae.tar.bz2
Widget fixes
git-svn-id: https://code.elgg.org/elgg/trunk@1086 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/profile')
-rw-r--r--mod/profile/actions/cropicon.php6
1 files changed, 0 insertions, 6 deletions
diff --git a/mod/profile/actions/cropicon.php b/mod/profile/actions/cropicon.php
index 137bd50ba..bcd8ea756 100644
--- a/mod/profile/actions/cropicon.php
+++ b/mod/profile/actions/cropicon.php
@@ -25,19 +25,13 @@
$tiny = get_resized_image_from_existing_file($filename,25,25, true, $x1, $y1, $x2, $y2);
$small = get_resized_image_from_existing_file($filename,40,40, true, $x1, $y1, $x2, $y2);
$medium = get_resized_image_from_existing_file($filename,100,100, true, $x1, $y1, $x2, $y2);
- $large = get_resized_image_from_existing_file($filename,200,200, true, $x1, $y1, $x2, $y2);
if ($small !== false
&& $medium !== false
- && $large !== false
&& $tiny !== false) {
$filehandler = new ElggFile();
$filehandler->owner_guid = $_SESSION['user']->getGUID();
- $filehandler->setFilename("profile/" . $_SESSION['user']->username . "large.jpg");
- $filehandler->open("write");
- $filehandler->write($large);
- $filehandler->close();
$filehandler->setFilename("profile/" . $_SESSION['user']->username . "medium.jpg");
$filehandler->open("write");
$filehandler->write($medium);