aboutsummaryrefslogtreecommitdiff
path: root/account
diff options
context:
space:
mode:
authormarcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-08-06 09:00:46 +0000
committermarcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-08-06 09:00:46 +0000
commitcc4277cd4771bb92b0d86ed5848289055352deec (patch)
tree5ec81977b6e1a3c82d075786894d4080077d5b71 /account
parent8df93307ab75aa31e0e6dd2efcc777ae98c2303c (diff)
downloadelgg-cc4277cd4771bb92b0d86ed5848289055352deec.tar.gz
elgg-cc4277cd4771bb92b0d86ed5848289055352deec.tar.bz2
Fixes #207: Thanks for your report eike!
git-svn-id: https://code.elgg.org/elgg/trunk@1724 36083f99-b078-4883-b0ff-0f9b5a30f544
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();
}