mirror of
https://github.com/lucaspalomodevelop/core.git
synced 2026-03-14 08:34:39 +00:00
dyndns: invert logic in type select selection
This commit is contained in:
parent
304e2c3dc5
commit
65f074b64f
@ -245,7 +245,7 @@ include("head.inc");
|
||||
<select name="type" class="selectpicker" id="type" onchange="_onTypeChange(this.options[this.selectedIndex].value);">
|
||||
<?php
|
||||
foreach (services_dyndns_list() as $value => $type):?>
|
||||
<option value="<?= $value ?>" <?= $value == $pconfig['type'] ? '' : 'selected="selected"'?>>
|
||||
<option value="<?= $value ?>" <?= $value == $pconfig['type'] ? 'selected="selected"' : '' ?>>
|
||||
<?= $type ?>
|
||||
</option>
|
||||
<?php
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user