diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-06-11 16:51:51 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-06-11 16:51:51 +0000 |
commit | 2ae5e96cc9d928a8d13c01d5bf152b99d18aec17 (patch) | |
tree | 05353beed49792a812654b988ff7c0795075eed7 /pages/account/forgotten_password.php | |
parent | 342b1184a70f7729d75c52d472a8d3652156f5e6 (diff) | |
download | elgg-2ae5e96cc9d928a8d13c01d5bf152b99d18aec17.tar.gz elgg-2ae5e96cc9d928a8d13c01d5bf152b99d18aec17.tar.bz2 |
Fixes #3556 limiting width of account text boxes
git-svn-id: http://code.elgg.org/elgg/trunk@9177 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'pages/account/forgotten_password.php')
-rw-r--r-- | pages/account/forgotten_password.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/pages/account/forgotten_password.php b/pages/account/forgotten_password.php index 7679eaa55..bf6ef87e0 100644 --- a/pages/account/forgotten_password.php +++ b/pages/account/forgotten_password.php @@ -13,7 +13,9 @@ if (elgg_is_logged_in()) { $title = elgg_echo("user:password:lost"); $content = elgg_view_title($title); -$content .= elgg_view_form('user/requestnewpassword'); +$content .= elgg_view_form('user/requestnewpassword', array( + 'class' => 'elgg-form-account', +)); $body = elgg_view_layout("one_column", array('content' => $content)); |