diff options
author | Ivan Kohler <ivan@freeside.biz> | 2017-05-23 09:47:48 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2017-05-23 09:47:48 -0700 |
commit | ffbb66f856373807aeed3f26ea42fd3ee6f3e497 (patch) | |
tree | 27f08f2ae13d75413cee5d08a7f4a71b2aee253a | |
parent | 2f2a2813ce2476a3e6294f601af7356091b41a63 (diff) |
don't echo back a password in the error message
-rw-r--r-- | FS/FS/svc_acct.pm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/FS/FS/svc_acct.pm b/FS/FS/svc_acct.pm index b659b01b2..089498045 100644 --- a/FS/FS/svc_acct.pm +++ b/FS/FS/svc_acct.pm @@ -1323,8 +1323,7 @@ sub check { $recref->{_password} = $1; } else { return gettext('illegal_password'). " $passwordmin-$passwordmax ". - FS::Msgcat::_gettext('illegal_password_characters'). - ": ". $recref->{_password}; + FS::Msgcat::_gettext('illegal_password_characters'); } if ( $password_noampersand ) { |