From 8929bee6e58cf603aa2275ec1428afeb2306e5ea Mon Sep 17 00:00:00 2001 From: Mark Wells Date: Wed, 27 Apr 2016 15:53:11 -0700 Subject: [PATCH] fix syntax error, #42091, from #32456 --- httemplate/edit/process/svc_dsl.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ) { -- 2.11.0