aboutsummaryrefslogtreecommitdiff
path: root/mod/profile
diff options
context:
space:
mode:
Diffstat (limited to 'mod/profile')
-rw-r--r--mod/profile/defaultprofile.php2
-rw-r--r--mod/profile/edit.php2
-rw-r--r--mod/profile/editicon.php2
3 files changed, 3 insertions, 3 deletions
diff --git a/mod/profile/defaultprofile.php b/mod/profile/defaultprofile.php
index 1e2884582..233214c15 100644
--- a/mod/profile/defaultprofile.php
+++ b/mod/profile/defaultprofile.php
@@ -46,4 +46,4 @@ $listing .= "<div class='default_profile_reset'>" . elgg_view('input/form',
set_context('admin');
-page_draw(elgg_echo('profile:edit:default'),elgg_view_layout("one_column_with_sidebar", '', $title . $form . $listing)); \ No newline at end of file
+page_draw(elgg_echo('profile:edit:default'),elgg_view_layout("one_column_with_sidebar", $title . $form . $listing)); \ No newline at end of file
diff --git a/mod/profile/edit.php b/mod/profile/edit.php
index 313d144fe..9894ce35d 100644
--- a/mod/profile/edit.php
+++ b/mod/profile/edit.php
@@ -40,7 +40,7 @@ $area1 = "";
set_context('profile_edit');
// get the required canvas area
-$body = elgg_view_layout("one_column_with_sidebar", $area1, $area2);
+$body = elgg_view_layout("one_column_with_sidebar", $area2, $area1);
// Draw the page
page_draw(elgg_echo("profile:edit"),$body);
diff --git a/mod/profile/editicon.php b/mod/profile/editicon.php
index 1c5c20d30..65b4b10da 100644
--- a/mod/profile/editicon.php
+++ b/mod/profile/editicon.php
@@ -37,7 +37,7 @@ $area2 .= 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", $area2);
// Draw the page
page_draw(elgg_echo("profile:editicon"), $body);