aboutsummaryrefslogtreecommitdiff
path: root/pages/account/reset_password.php
diff options
context:
space:
mode:
authorCash Costello <cash.costello@gmail.com>2013-06-13 04:30:11 -0700
committerCash Costello <cash.costello@gmail.com>2013-06-13 04:30:11 -0700
commit160c828b75abee571d0058694c9758617a613242 (patch)
tree15b5b469525323684c6e763d138fb83ea3fdfcae /pages/account/reset_password.php
parentc3f02ab07e20b870cb36e05de2795ef9fea09182 (diff)
parent13a7ca453d09672c7bbc7bef84eaf4e47b646da5 (diff)
downloadelgg-160c828b75abee571d0058694c9758617a613242.tar.gz
elgg-160c828b75abee571d0058694c9758617a613242.tar.bz2
Merge pull request #5628 from cash/pr-5620
fixing the issue with registration not showing on walled garden after failed registration
Diffstat (limited to 'pages/account/reset_password.php')
-rw-r--r--pages/account/reset_password.php11
1 files changed, 8 insertions, 3 deletions
diff --git a/pages/account/reset_password.php b/pages/account/reset_password.php
index 6515bfc5d..3ab8ccf3e 100644
--- a/pages/account/reset_password.php
+++ b/pages/account/reset_password.php
@@ -30,6 +30,11 @@ $form = elgg_view_form('user/passwordreset', array('class' => 'elgg-form-account
$title = elgg_echo('resetpassword');
$content = elgg_view_title(elgg_echo('resetpassword')) . $form;
-$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);
+}