diff options
author | Mark Wells <mark@freeside.biz> | 2016-01-12 22:07:17 -0800 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2016-01-12 22:10:51 -0800 |
commit | 6f471946b3ae36061cb595ba0657a5b43e7bfd5d (patch) | |
tree | afe0d89328e91b81981d3831ccec50cb35d63b20 /FS | |
parent | ae5d2972d6d9b582cd739bab778cc46dbe52e478 (diff) |
allow svc_acct password field to be disabled, #39528, fixing fallout from #29354 and #32456
Diffstat (limited to 'FS')
-rw-r--r-- | FS/FS/Password_Mixin.pm | 2 | ||||
-rw-r--r-- | FS/FS/svc_acct.pm | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/FS/FS/Password_Mixin.pm b/FS/FS/Password_Mixin.pm index eb1db81e8..ee038db5a 100644 --- a/FS/FS/Password_Mixin.pm +++ b/FS/FS/Password_Mixin.pm @@ -37,7 +37,7 @@ message on failure, an empty string on success. This MUST NOT be called from check(). It should be called by the office UI, self-service ClientAPI, or other I<user-interactive> code that processes a password change, and only if the user has taken some action with the intent -of changing the password. +of setting the password. =cut diff --git a/FS/FS/svc_acct.pm b/FS/FS/svc_acct.pm index 203150f7c..af152a82e 100644 --- a/FS/FS/svc_acct.pm +++ b/FS/FS/svc_acct.pm @@ -318,7 +318,7 @@ sub table_info { disable_inventory => 1, }, '_password' => { label => 'Password', - required => 1 + #required => 1 }, 'gid' => { label => 'GID', |