Skip to content
Snippets Groups Projects
Commit 5db55c0e authored by Florian Schaal's avatar Florian Schaal
Browse files

Incorrect names of fields in DNS DMARC form (Fixes #4316)

parent c1d4814e
No related branches found
No related tags found
No related merge requests found
...@@ -94,7 +94,7 @@ class page_action extends tform_actions { ...@@ -94,7 +94,7 @@ class page_action extends tform_actions {
$this->id = 1; $this->id = 1;
$old_data = strtolower($rec['data']); $old_data = strtolower($rec['data']);
$app->tpl->setVar("data", $old_data); $app->tpl->setVar("data", $old_data);
if ($rec['active'] == 'Y') $app->tpl->setVar("active", "CHECKED"); if ($rec['active'] == 'Y') $app->tpl->setVar("active", "CHECKED"); else $app->tpl->setVar("active", "UNCHECKED");
$dmarc_rua = ''; $dmarc_rua = '';
$dmarc_ruf = ''; $dmarc_ruf = '';
$dmac_rf = ''; $dmac_rf = '';
......
...@@ -51,7 +51,7 @@ ...@@ -51,7 +51,7 @@
<div class="form-group"> <div class="form-group">
<label class="col-sm-2 control-label control-label-plain"></label> <label class="col-sm-2 control-label control-label-plain"></label>
<div class="col-sm-1"> <div class="col-sm-1">
<input type="checkbox" value="1" id="dmarc_fo0" name="dmarc_fo0" {tmpl_var name='dmarc_fo1'}/> <input type="checkbox" value="1" id="dmarc_fo1" name="dmarc_fo1" {tmpl_var name='dmarc_fo1'}/>
</div> </div>
<div class="col-sm-3 input-sm"> <div class="col-sm-3 input-sm">
{tmpl_var name='dmarc_fo1_txt'} {tmpl_var name='dmarc_fo1_txt'}
...@@ -97,7 +97,7 @@ ...@@ -97,7 +97,7 @@
<div class="form-group"> <div class="form-group">
<label class="col-sm-2 control-label">{tmpl_var name='dmarc_rf_txt'}</label> <label class="col-sm-2 control-label">{tmpl_var name='dmarc_rf_txt'}</label>
<div class="col-sm-1"> <div class="col-sm-1">
<input type="checkbox" value="1" id="dmarc_rf_afrf" name="dmarc_fo0" {tmpl_var name='dmarc_rf_afrf'}/> <input type="checkbox" value="1" id="dmarc_rf_afrf" name="dmarc_rf_afrf" {tmpl_var name='dmarc_rf_afrf'}/>
</div> </div>
<div class="col-sm-3 input-sm"> <div class="col-sm-3 input-sm">
{tmpl_var name='dmarc_rf_afrf_txt'} {tmpl_var name='dmarc_rf_afrf_txt'}
...@@ -136,17 +136,11 @@ ...@@ -136,17 +136,11 @@
<select name="dmarc_sp" id="dmarc_sp" class="form-control">{tmpl_var name='dmarc_sp'}</select> <select name="dmarc_sp" id="dmarc_sp" class="form-control">{tmpl_var name='dmarc_sp'}</select>
</div> </div>
</div> </div>
<div class="form-group">
<label for="ttl" class="col-sm-2 control-label">{tmpl_var name='ttl_txt'}</label>
<div class="col-sm-3">
<input type="text" name="ttl" id="ttl" value="{tmpl_var name='ttl'}" class="form-control" />
</div>
</div>
<div class="form-group"> <div class="form-group">
<label class="col-sm-2 control-label">{tmpl_var name='active_txt'}</label> <label class="col-sm-2 control-label">{tmpl_var name='active_txt'}</label>
<div class="col-sm-3"> <div class="col-sm-3">
{tmpl_var name='active'} <input type="checkbox" value="1" id="active" name="active" {tmpl_var name='active'} />
</div> </div>
</div> </div>
......
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