Commit 278ae1f3 authored by Côme Chilliet's avatar Côme Chilliet
Browse files

:ambulance: fix(dns) Field for TXT record was too short

issue #5795
Showing with 3 additions and 0 deletions
+3 -0
......@@ -364,6 +364,9 @@ class DnsRecordAttribute extends CompositeAttribute
$this->parentFQDN
);
break;
case 'tXTRecord':
$this->attributes[1] = new TextAreaAttribute(_('Content'), _('Content of this record'), $ldapName, TRUE);
break;
default:
$this->attributes[1] = new StringAttribute(_('Content'), _('Content of this record'), $ldapName, TRUE);
break;
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment