aboutsummaryrefslogtreecommitdiff
path: root/mod/profile/editicon.php
diff options
context:
space:
mode:
Diffstat (limited to 'mod/profile/editicon.php')
-rw-r--r--mod/profile/editicon.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/mod/profile/editicon.php b/mod/profile/editicon.php
index 65b4b10da..0e73c8d81 100644
--- a/mod/profile/editicon.php
+++ b/mod/profile/editicon.php
@@ -31,13 +31,13 @@ if (!$user->canEdit()) {
}
// set title
-$area2 = elgg_view_title(elgg_echo('profile:createicon:header'));
-$area2 .= elgg_view("profile/edit_icon", array('user' => $user));
+$area1 = elgg_view_title(elgg_echo('profile:createicon:header'));
+$area1 .= elgg_view("profile/edit_icon", array('user' => $user));
set_context('profile_edit');
// Get the form and correct canvas area
-$body = elgg_view_layout("one_column_with_sidebar", $area2);
+$body = elgg_view_layout("one_column_with_sidebar", $area1);
// Draw the page
page_draw(elgg_echo("profile:editicon"), $body);