diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-06-11 12:33:08 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-06-11 12:33:08 -0400 |
commit | f81b4421fe225ef9ce5fa7cb01539e0ed4439c43 (patch) | |
tree | 4e2630fd97551c5097943a44bcc484d58e43e3dc /actions/password.php | |
parent | 337d146c4658f9af7275e57ec5f83ffe790fc2f7 (diff) |
instructions
darcs-hash:20080611163308-84dde-c918f04fe6bba3dd382b822ef59cb70a57bb9504.gz
Diffstat (limited to 'actions/password.php')
-rw-r--r-- | actions/password.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/actions/password.php b/actions/password.php index 8f770a969..fe19f5f71 100644 --- a/actions/password.php +++ b/actions/password.php @@ -26,7 +26,12 @@ class PasswordAction extends SettingsAction { function show_form($msg=NULL, $success=false) { common_show_header(_t('Change password')); $this->settings_menu(); - $this->message($msg, $success); + if ($msg) { + $this->message($msg, $success); + } else { + common_element('div', 'instructions', + _t('You can change your password here. Choose a good one!')); + } common_element_start('form', array('method' => 'POST', 'id' => 'password', 'action' => |