aboutsummaryrefslogtreecommitdiff
path: root/account
diff options
context:
space:
mode:
Diffstat (limited to 'account')
-rw-r--r--account/forgotten_password.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/account/forgotten_password.php b/account/forgotten_password.php
index dd76cd8fe..bf54bb8d1 100644
--- a/account/forgotten_password.php
+++ b/account/forgotten_password.php
@@ -13,7 +13,9 @@
require_once(dirname(dirname(__FILE__)) . "/engine/start.php");
if (!isloggedin()) {
- echo page_draw(elgg_echo('user:password:lost'), elgg_view_title(elgg_echo('user:password:lost')) . elgg_view("account/forms/forgotten_password"));
+ $body = elgg_view_title(elgg_echo('user:password:lost')) . elgg_view("account/forms/forgotten_password");
+
+ echo page_draw(elgg_echo('user:password:lost'), elgg_view_layout("one_column", $body));
} else {
forward();
}