aboutsummaryrefslogtreecommitdiff
path: root/pages/account/forgotten_password.php
diff options
context:
space:
mode:
authorCash Costello <cash.costello@gmail.com>2013-06-12 21:09:03 -0400
committerCash Costello <cash.costello@gmail.com>2013-06-12 21:09:03 -0400
commit731b7bdde4790d2bfd565eb2d9c847f4adedf4b4 (patch)
tree0b25ebaafbc0a7c333058d18073ee90ef4e3749b /pages/account/forgotten_password.php
parentc3f02ab07e20b870cb36e05de2795ef9fea09182 (diff)
downloadelgg-731b7bdde4790d2bfd565eb2d9c847f4adedf4b4.tar.gz
elgg-731b7bdde4790d2bfd565eb2d9c847f4adedf4b4.tar.bz2
Refs #5487 account related pages use walled garden now
Diffstat (limited to 'pages/account/forgotten_password.php')
-rw-r--r--pages/account/forgotten_password.php11
1 files changed, 8 insertions, 3 deletions
diff --git a/pages/account/forgotten_password.php b/pages/account/forgotten_password.php
index bf6ef87e0..f464f98c9 100644
--- a/pages/account/forgotten_password.php
+++ b/pages/account/forgotten_password.php
@@ -17,6 +17,11 @@ $content .= elgg_view_form('user/requestnewpassword', array(
'class' => 'elgg-form-account',
));
-$body = elgg_view_layout("one_column", array('content' => $content));
-
-echo elgg_view_page($title, $body);
+if (elgg_get_config('walled_garden')) {
+ elgg_load_css('elgg.walled_garden');
+ $body = elgg_view_layout('walled_garden', array('content' => $content));
+ echo elgg_view_page($title, $body, 'walled_garden');
+} else {
+ $body = elgg_view_layout('one_column', array('content' => $content));
+ echo elgg_view_page($title, $body);
+}