mirror of
https://github.com/lucaspalomodevelop/core.git
synced 2026-03-20 03:16:12 +00:00
Restore area - line break is missing, closes https://github.com/opnsense/core/pull/2813
This commit is contained in:
parent
54f4ec89bb
commit
9aeb91cced
@ -384,14 +384,16 @@ $( document ).ready(function() {
|
||||
<tr>
|
||||
<td>
|
||||
<?=gettext("Restore area:"); ?>
|
||||
<select name="restorearea" id="restorearea" class="selectpicker">
|
||||
<option value=""><?=gettext("ALL");?></option>
|
||||
<div>
|
||||
<select name="restorearea" id="restorearea" class="selectpicker">
|
||||
<option value=""><?=gettext("ALL");?></option>
|
||||
<?php
|
||||
foreach($areas as $area => $areaname):?>
|
||||
<option value="<?=$area;?>"><?=$areaname;?></option>
|
||||
foreach($areas as $area => $areaname):?>
|
||||
<option value="<?=$area;?>"><?=$areaname;?></option>
|
||||
<?php
|
||||
endforeach;?>
|
||||
</select><br/>
|
||||
endforeach;?>
|
||||
</select>
|
||||
</div>
|
||||
<input name="conffile" type="file" id="conffile" /><br/>
|
||||
<input name="rebootafterrestore" type="checkbox" id="rebootafterrestore" checked="checked" />
|
||||
<?=gettext("Reboot after a successful restore."); ?><br/>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user