diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-06-12 12:52:01 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-06-12 12:52:01 -0400 |
commit | 2354faf7ac87f191b7d4906e40e82172199accb9 (patch) | |
tree | 004fa15a68e31565cf36236a31c8e838b0dfdddc /actions/password.php | |
parent | f4be93d2852dac7c5b8a6ecce66f047a53bba6c5 (diff) |
add instructions to each form entry in forms
darcs-hash:20080612165201-84dde-1abc45a0b2fd24002bc6f3449e9fc521d4f02eac.gz
Diffstat (limited to 'actions/password.php')
-rw-r--r-- | actions/password.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/actions/password.php b/actions/password.php index ee61c3e97..603ae58ea 100644 --- a/actions/password.php +++ b/actions/password.php @@ -36,8 +36,10 @@ class PasswordAction extends SettingsAction { 'action' => common_local_url('password'))); common_password('oldpassword', _t('Old password')); - common_password('newpassword', _t('New password')); - common_password('confirm', _t('Confirm')); + common_password('newpassword', _t('New password'), + _t('6 or more characters')); + common_password('confirm', _t('Confirm'), + _t('same as password above')); common_submit('submit', _t('Change')); common_element_end('form'); common_show_footer(); |