aboutsummaryrefslogtreecommitdiff
path: root/mod/profile
diff options
context:
space:
mode:
Diffstat (limited to 'mod/profile')
-rw-r--r--mod/profile/edit.php7
-rw-r--r--mod/profile/editicon.php4
2 files changed, 7 insertions, 4 deletions
diff --git a/mod/profile/edit.php b/mod/profile/edit.php
index 046c9716f..9db4848dd 100644
--- a/mod/profile/edit.php
+++ b/mod/profile/edit.php
@@ -22,14 +22,17 @@
// Get form, if we're allowed to edit
if ($user->canEdit()) {
- $body = elgg_view("profile/edit",array('entity' => $user));
+ $area1 = elgg_view("profile/edit",array('entity' => $user));
} else {
- $body = elgg_echo("profile:noaccess");
+ $area1 = elgg_echo("profile:noaccess");
}
+ // get the required canvas area
+ $body = elgg_view_layout("one_column", $area1);
+
// Draw the page
page_draw(elgg_echo("profile:edit"),$body);
diff --git a/mod/profile/editicon.php b/mod/profile/editicon.php
index 2b33abb62..145932795 100644
--- a/mod/profile/editicon.php
+++ b/mod/profile/editicon.php
@@ -16,8 +16,8 @@
// Make sure we're logged in
if (!isloggedin()) forward();
- // Get the form
- $body = elgg_view("profile/editicon");
+ // Get the form and correct canvas area
+ $body = elgg_view_layout("one_column", elgg_view("profile/editicon"));
// Draw the page
page_draw(elgg_echo("profile:editicon"),$body);