Skip to content
Snippets Groups Projects
Commit c0b64b22 authored by Till Brehm's avatar Till Brehm
Browse files

Fixed #5227 SOAP API "dns_templatezone_add" error "Column 'xfer' cannot be null"

parent 3729a0cd
No related branches found
No related tags found
1 merge request!936add CentOS 8 detection
Pipeline #605 passed
......@@ -113,6 +113,7 @@ class remoting_dns extends remoting {
if($vars['expire'] == '') $error .= $app->lng('error_expire_empty').'<br />';
if($vars['minimum'] == '') $error .= $app->lng('error_minimum_empty').'<br />';
if($vars['ttl'] == '') $error .= $app->lng('error_ttl_empty').'<br />';
if(!isset($vars['xfer'])) $vars['xfer'] = '';
if($error == '') {
// Insert the soa record
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment