diff --git a/root/etc/e-smith/web/functions/awstats b/root/etc/e-smith/web/functions/awstats index 6755cf7..899afd9 100644 --- a/root/etc/e-smith/web/functions/awstats +++ b/root/etc/e-smith/web/functions/awstats @@ -237,7 +237,7 @@ sub showInitial ($$) } - print $q->startform (-method => 'POST', -action => $q->url (-absolute => 1)); + print $q->start_form (-method => 'POST', -action => $q->url (-absolute => 1)); my $mydom = @mydom; if ($mydom == 0) @@ -548,7 +548,7 @@ sub confAWStats ($) esmith::cgi::genHeaderNonCacheable ($q, \%conf, 'Configure AWStats'.$version); - print $q->startform (-method => 'POST', + print $q->start_form (-method => 'POST', -action => $q->url (-absolute => 1)); print $q->table ({border => 0, cellspacing => 0, cellpadding => 0}, @@ -833,7 +833,7 @@ sub deleteStats ($) esmith::cgi::genHeaderNonCacheable ($q, \%conf, 'Delete statistics'); - print $q->startform + print $q->start_form (-method => 'POST', -action => $q->url (-absolute => 1)); my $domain = $q->param ('domain'); @@ -850,7 +850,7 @@ sub deleteStats ($) -override => 1, -default => 'performDelete'); - print $q->endform; + print $q->end_form; esmith::cgi::genFooter ($q); return; } @@ -922,7 +922,7 @@ sub modifyOptions ($$) print $q->hr; } - print $q->startform (-method => 'POST', -action => $q->url (-absolute => 1)); + print $q->start_form (-method => 'POST', -action => $q->url (-absolute => 1)); # find system users my @userlist = ('admin','everyone'); diff --git a/smeserver-awstats.spec b/smeserver-awstats.spec index 30148a8..db8f64a 100644 --- a/smeserver-awstats.spec +++ b/smeserver-awstats.spec @@ -4,7 +4,7 @@ %define realname smeserver-awstats %define version 1.4 -%define release 16 +%define release 17 Summary: SME Server integration rpm for awstats Name: %{realname} @@ -26,6 +26,9 @@ AutoReqProv: no SME Server integration rpm for awstats. %changelog +* Tue Oct 07 2025 Brian Read 1.4-17.sme +- Apply change from startform to start_form and endform to end_form to CGI panels [SME: 12775-87] + * Fri Oct 03 2025 Brian Read 1.4-16.sme - Apply UTF8 to DomainDB and ConfigDB and fix potential caching problem [SME: 13209]