fix syntax error, #42091, from #32456
authorMark Wells <mark@freeside.biz>
Wed, 27 Apr 2016 22:53:11 +0000 (15:53 -0700)
committerMark Wells <mark@freeside.biz>
Wed, 27 Apr 2016 22:53:41 +0000 (15:53 -0700)
httemplate/edit/process/svc_dsl.html

index 436ca76..489c869 100644 (file)
@@ -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 ) {