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, 5 insertions, 1 deletions
diff --git a/mod/profile/editicon.php b/mod/profile/editicon.php
index 145932795..3dc10cc21 100644
--- a/mod/profile/editicon.php
+++ b/mod/profile/editicon.php
@@ -15,9 +15,13 @@
// Make sure we're logged in
if (!isloggedin()) forward();
+
+ // set title
+ $area1 = elgg_view_title(elgg_echo('profile:createicon:header'));
+ $area1 .= elgg_view("profile/editicon");
// Get the form and correct canvas area
- $body = elgg_view_layout("one_column", elgg_view("profile/editicon"));
+ $body = elgg_view_layout("one_column", $area1);
// Draw the page
page_draw(elgg_echo("profile:editicon"),$body);