* Tue Oct 07 2025 Brian Read <brianr@koozali.org> 11.0.0-7.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:27:16 +01:00
parent b9a151c128
commit a56cf286c4
3 changed files with 25 additions and 19 deletions

View File

@@ -181,7 +181,7 @@ sub showInitial ($$)
my $default_action = 'desktop-backup';
print $q->startform (-method => 'POST',
print $q->start_form (-method => 'POST',
-action => $q->url (-absolute => 1));
print $q->table ({border => 0, cellspacing => 0, cellpadding => 4});
@@ -209,7 +209,7 @@ sub showInitial ($$)
-default => 'perform'
);
print $q->endform;
print $q->end_form;
# print $q->p ($q->hr, $q->font ({size => "-1"}, "www.dungog.net/sme"));
esmith::cgi::genFooter($q);
@@ -322,7 +322,7 @@ sub desktopRestore ()
-override => 1,
-default => 'desktop-restore');
print $q->endform;
print $q->end_form;
esmith::cgi::genFooter ($q);
}
@@ -372,7 +372,7 @@ sub desktopVerify ()
-default => 'desktop-verify'
);
print $q->endform;
print $q->end_form;
esmith::cgi::genFooter ($q);
}