diff options
| author | Tim Almdal <tnalmdal@shaw.ca> | 2009-10-27 12:23:48 -0700 |
|---|---|---|
| committer | Tim Almdal <tnalmdal@shaw.ca> | 2009-10-27 12:23:48 -0700 |
| commit | 1347a300509b2ab3083bb88193987c18b33187ad (patch) | |
| tree | 739a29a66185b9cbc1263c66434c7cba3b467599 /modules/user/controllers/users.php | |
| parent | 156a99beef968a22167502bb6389b4df7526feb0 (diff) | |
Add a password strength meter.
Diffstat (limited to 'modules/user/controllers/users.php')
| -rw-r--r-- | modules/user/controllers/users.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/user/controllers/users.php b/modules/user/controllers/users.php index 3507ec6d..7bcc74d7 100644 --- a/modules/user/controllers/users.php +++ b/modules/user/controllers/users.php @@ -63,7 +63,9 @@ class Users_Controller extends Controller { access::forbidden(); } - print $this->_get_edit_form($user); + $v = new View("user_form.html"); + $v->form = $this->_get_edit_form($user); + print $v; } private function _get_edit_form($user) { |
