diff options
author | Brion Vibber <brion@pobox.com> | 2009-11-10 06:44:53 -0800 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2009-11-10 06:44:53 -0800 |
commit | 333c376c955fd2513ea168d712223f033db73356 (patch) | |
tree | 371f4e8399aa0ea44f2d30ae11d7d777ed812ee9 /actions/passwordsettings.php | |
parent | 088081675fb7d5250a9b9dfe5015de0822cb5ac2 (diff) | |
parent | 069d3f2b2f912f2e7d2289bc58270341c9b1ecc5 (diff) |
Merge remote branch 'statusnet/0.9.x' into 0.9.x
Diffstat (limited to 'actions/passwordsettings.php')
-rw-r--r-- | actions/passwordsettings.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/actions/passwordsettings.php b/actions/passwordsettings.php index 87eb45a7d..024f1287f 100644 --- a/actions/passwordsettings.php +++ b/actions/passwordsettings.php @@ -58,6 +58,19 @@ class PasswordsettingsAction extends AccountSettingsAction return _('Change password'); } + function prepare($args){ + parent::prepare($args); + + $user = common_current_user(); + + Event::handle('CanUserChangeField', array($user->nickname, 'password')); + + if(! $fields['password']){ + //user is not allowed to change his password + $this->clientError(_('You are not allowed to change your password')); + } + } + /** * Instructions for use * @@ -86,6 +99,7 @@ class PasswordsettingsAction extends AccountSettingsAction function showContent() { $user = common_current_user(); + $this->elementStart('form', array('method' => 'POST', 'id' => 'form_password', 'class' => 'form_settings', |