diff options
author | Mark Wells <mark@freeside.biz> | 2016-04-27 15:53:11 -0700 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2016-04-27 15:53:37 -0700 |
commit | 72682b32ce9ed456cd1ec25af25c6c597838392b (patch) | |
tree | 2977461e88d1c602e1aeca3b4c09216afb7d961f | |
parent | af48faca3f0befe89523c88efbe89f29f5f58bb6 (diff) |
fix syntax error, #42091, from #32456
-rw-r--r-- | httemplate/edit/process/svc_dsl.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/edit/process/svc_dsl.html b/httemplate/edit/process/svc_dsl.html index 436ca766b..489c86916 100644 --- a/httemplate/edit/process/svc_dsl.html +++ b/httemplate/edit/process/svc_dsl.html @@ -25,7 +25,7 @@ my $precheck_callback = sub { my $psc = $part_svc->part_svc_column('password'); if ( $psc->columnflag eq 'F' ) { # enforce it here and skip password validation - $cgi->param('password', $psc->columnvalue; + $cgi->param('password', $psc->columnvalue); } else { my $newpass = $cgi->param('password'); if ( $old and $newpass ne $old->password ) { |