We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6ee7a1 commit 853f650Copy full SHA for 853f650
interface/web/dns/form/rr.tform.php
@@ -110,6 +110,9 @@
110
'aux' => array (
111
'datatype' => 'INTEGER',
112
'formtype' => 'TEXT',
113
+ 'validators' => array (0 => array ('type' => 'ISINT',
114
+ 'errmsg'=> 'rr_aux_error_noint'),
115
+ ),
116
'default' => '',
117
'value' => '',
118
'width' => '30',
interface/web/dns/lib/lang/en_rr.lng
@@ -8,5 +8,6 @@ $wb["ttl_txt"] = 'TTL';
8
$wb["btn_save_txt"] = 'Save';
9
$wb["btn_cancel_txt"] = 'Cancel';
10
$wb["rr_data_error_empty"] = 'The data field must not be empty!';
11
+$wb["rr_aux_error_noint"] = 'Preference/priority must be an integer!';
12
$wb["rr_ttl_error_notpositive"] = 'The TTL must be positive!';
13
?>
0 commit comments