* Tue Oct 07 2025 Brian Read <brianr@koozali.org> 11.0.0-8.sme
- Apply change from startform to start_form and endform to end_form to CGI panels [SME: 12775-87]
This commit is contained in:
@@ -314,7 +314,7 @@ sub showInitial ($$)
|
||||
my $cmd=$ddretrieve->prop('cmd')||'';
|
||||
my $forceIP=$ddretrieve->prop('ForceIP')||'';
|
||||
|
||||
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},
|
||||
@@ -347,7 +347,7 @@ sub showInitial ($$)
|
||||
-override => 1,
|
||||
-default => 'performRetrieve');
|
||||
|
||||
print $q->endform;
|
||||
print $q->end_form;
|
||||
print $q->hr;
|
||||
|
||||
#------------------------------------------------------------
|
||||
@@ -596,7 +596,7 @@ sub createDomain ($)
|
||||
}
|
||||
|
||||
|
||||
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},
|
||||
@@ -634,7 +634,7 @@ sub createDomain ($)
|
||||
-override => 1,
|
||||
-default => 'performCreate');
|
||||
|
||||
print $q->endform;
|
||||
print $q->end_form;
|
||||
|
||||
esmith::cgi::genFooter ($q);
|
||||
return;
|
||||
@@ -722,7 +722,7 @@ sub modifyDomain ($)
|
||||
esmith::cgi::genHeaderNonCacheable ($q, \%conf,
|
||||
$fm->localise('MODIFY_TITLE'));
|
||||
|
||||
print $q->startform (-method => 'POST', -action => $q->url (-absolute => 1));
|
||||
print $q->start_form (-method => 'POST', -action => $q->url (-absolute => 1));
|
||||
|
||||
my $domain = $q->param ('domain');
|
||||
my $value = $domaindb->get($domain);
|
||||
@@ -795,7 +795,7 @@ sub modifyDomain ($)
|
||||
|
||||
}
|
||||
|
||||
print $q->endform;
|
||||
print $q->end_form;
|
||||
esmith::cgi::genFooter ($q);
|
||||
return;
|
||||
}
|
||||
@@ -901,7 +901,7 @@ sub deleteDomain ($)
|
||||
|
||||
esmith::cgi::genHeaderNonCacheable ($q, \%conf, $fm->localise('REMOVE_TITLE'));
|
||||
|
||||
print $q->startform (-method => 'POST', -action => $q->url (-absolute => 1));
|
||||
print $q->start_form (-method => 'POST', -action => $q->url (-absolute => 1));
|
||||
|
||||
my $domain = $q->param ('domain');
|
||||
my $value = $domaindb->get($domain);
|
||||
@@ -928,7 +928,7 @@ sub deleteDomain ($)
|
||||
-default => 'performDelete');
|
||||
}
|
||||
|
||||
print $q->endform;
|
||||
print $q->end_form;
|
||||
esmith::cgi::genFooter ($q);
|
||||
return;
|
||||
}
|
||||
@@ -1003,7 +1003,7 @@ sub ddcreateDomain ($)
|
||||
esmith::cgi::genHeaderNonCacheable
|
||||
($q, \%conf, $fm->localise('CREATE_TITLE'));
|
||||
|
||||
print $q->startform (-method => 'POST',
|
||||
print $q->start_form (-method => 'POST',
|
||||
-action => $q->url (-absolute => 1));
|
||||
print $q->h3 ($fm->localise('CUSTOM_DESCRIPTION'));
|
||||
print $q->p;
|
||||
@@ -1041,7 +1041,7 @@ sub ddcreateDomain ($)
|
||||
-override => 1,
|
||||
-default => 'ddperformCreate');
|
||||
|
||||
print $q->endform;
|
||||
print $q->end_form;
|
||||
|
||||
esmith::cgi::genFooter ($q);
|
||||
return;
|
||||
@@ -1164,7 +1164,7 @@ sub ddmodifyDomain ($)
|
||||
esmith::cgi::genHeaderNonCacheable ($q, \%conf,
|
||||
$fm->localise('MODIFY_TITLE'));
|
||||
|
||||
print $q->startform (-method => 'POST', -action => $q->url (-absolute => 1));
|
||||
print $q->start_form (-method => 'POST', -action => $q->url (-absolute => 1));
|
||||
|
||||
my $domain = $q->param ('domain');
|
||||
my $evalue = $edb->get($domain);
|
||||
@@ -1225,7 +1225,7 @@ sub ddmodifyDomain ($)
|
||||
return;
|
||||
}
|
||||
|
||||
print $q->endform;
|
||||
print $q->end_form;
|
||||
esmith::cgi::genFooter ($q);
|
||||
return;
|
||||
}
|
||||
@@ -1325,7 +1325,7 @@ sub dddeleteDomain ($)
|
||||
|
||||
esmith::cgi::genHeaderNonCacheable ($q, \%conf, $fm->localise('REMOVE_TITLE'));
|
||||
|
||||
print $q->startform (-method => 'POST', -action => $q->url (-absolute => 1));
|
||||
print $q->start_form (-method => 'POST', -action => $q->url (-absolute => 1));
|
||||
|
||||
my $domain = $q->param ('domain');
|
||||
my $evalue = $edb->get($domain);
|
||||
@@ -1353,7 +1353,7 @@ sub dddeleteDomain ($)
|
||||
return;
|
||||
}
|
||||
|
||||
print $q->endform;
|
||||
print $q->end_form;
|
||||
esmith::cgi::genFooter ($q);
|
||||
return;
|
||||
}
|
||||
|
@@ -4,7 +4,7 @@
|
||||
|
||||
%define name smeserver-ddclient
|
||||
%define version 11.0.0
|
||||
%define release 7
|
||||
%define release 8
|
||||
|
||||
Summary: ddclient panel for SME Server
|
||||
Name: %{name}
|
||||
@@ -25,6 +25,9 @@ Requires: smeserver-formmagick
|
||||
AutoReqProv: no
|
||||
|
||||
%changelog
|
||||
* Tue Oct 07 2025 Brian Read <brianr@koozali.org> 11.0.0-8.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 <brianr@koozali.org> 11.0.0-7.sme
|
||||
- Make UTF8 changes and also fix any potential caching problems [SME: 13209]
|
||||
|
||||
|
Reference in New Issue
Block a user