summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Wells <mark@freeside.biz>2016-04-27 15:53:11 -0700
committerMark Wells <mark@freeside.biz>2016-04-27 15:53:11 -0700
commit051449daeb488ac38f380392d6e42d9f6408d892 (patch)
tree64437b6f7964c8aa5d04fb05b96e8419c8aa8090
parent414224f792cf11ec3423e1be890d483b5a59df4a (diff)
fix syntax error, #42091, from #32456
-rw-r--r--httemplate/edit/process/svc_dsl.html2
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 ) {