From f01d6a8266797c15155734002727496c0f0e8648 Mon Sep 17 00:00:00 2001 From: ben Date: Tue, 1 Jul 2008 13:44:13 +0000 Subject: Toolbar -> topbar in profile icons git-svn-id: https://code.elgg.org/elgg/trunk@1233 36083f99-b078-4883-b0ff-0f9b5a30f544 --- mod/profile/actions/cropicon.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'mod/profile/actions/cropicon.php') diff --git a/mod/profile/actions/cropicon.php b/mod/profile/actions/cropicon.php index d52c6b02c..d13a765c4 100644 --- a/mod/profile/actions/cropicon.php +++ b/mod/profile/actions/cropicon.php @@ -22,7 +22,7 @@ $filehandler->setFilename("profile/" . $user->username . "master" . ".jpg"); $filename = $filehandler->getFilenameOnFilestore(); - $toolbar = get_resized_image_from_existing_file($filename,16,16, true, $x1, $y1, $x2, $y2); + $topbar = get_resized_image_from_existing_file($filename,16,16, true, $x1, $y1, $x2, $y2); $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); @@ -45,9 +45,9 @@ $filehandler->open("write"); $filehandler->write($tiny); $filehandler->close(); - $filehandler->setFilename("profile/" . $_SESSION['user']->username . "toolbar.jpg"); + $filehandler->setFilename("profile/" . $_SESSION['user']->username . "topbar.jpg"); $filehandler->open("write"); - $filehandler->write($toolbar); + $filehandler->write($topbar); $filehandler->close(); $user->x1 = $x1; -- cgit v1.2.3