summaryrefslogtreecommitdiff
path: root/httemplate/edit/svc_acct.cgi
diff options
context:
space:
mode:
authorJonathan Prykop <jonathan@freeside.biz>2016-01-05 22:19:26 -0600
committerJonathan Prykop <jonathan@freeside.biz>2016-01-05 22:26:04 -0600
commite32f1ceeb6f267ab6d3279bf350d192d4bf1a72e (patch)
tree79edd38d8b811002386ce2a69f46cb960ceecbf8 /httemplate/edit/svc_acct.cgi
parent1667ab631f9fbd0f4ceeb6ec000b0f4ff3ddb51a (diff)
RT#39481: Password Maximum Length
Diffstat (limited to 'httemplate/edit/svc_acct.cgi')
-rwxr-xr-xhttemplate/edit/svc_acct.cgi2
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/edit/svc_acct.cgi b/httemplate/edit/svc_acct.cgi
index 0cf0c20e1..ca26c6cf0 100755
--- a/httemplate/edit/svc_acct.cgi
+++ b/httemplate/edit/svc_acct.cgi
@@ -553,7 +553,7 @@ my $ulen =
: dbdef->table('svc_acct')->column('username')->length;
my $ulen2 = $ulen+2;
-my $pmax = max($conf->config('passwordmax') || 13);
+my $pmax = max($conf->config('passwordmax') || 12);
my $pmax2 = $pmax+2;
my $p1 = popurl(1);