* Tue Oct 07 2025 Brian Read <brianr@koozali.org> 1.4-10.sme

- Apply change from startform to start_form and endform to end_form to CGI panels [SME: 12775-87]
This commit is contained in:
2025-10-08 06:12:44 +01:00
parent 94195b89ff
commit f2471dc871
3 changed files with 10 additions and 4 deletions

View File

@@ -129,7 +129,7 @@ redistribute this software.
EOF
print $q->endform;
print $q->end_form;
esmith::cgi::genFooter ($q);

View File

@@ -332,7 +332,7 @@ sub modifyAccess ($)
esmith::cgi::genHeaderNonCacheable ($q, \%conf, 'Modify user-manager access');
print
$q->startform (-method => 'POST', -action => $q->url (-absolute => 1));
$q->start_form (-method => 'POST', -action => $q->url (-absolute => 1));
my $acct = $q->param ('acct');
@@ -374,7 +374,7 @@ sub modifyAccess ($)
}
print $q->endform;
print $q->end_form;
esmith::cgi::genFooter ($q);
return;
}