Resolve php warnings on undefined vars

This commit is contained in:
billz
2024-12-16 17:52:31 -08:00
parent b5179f3991
commit 5020e8b5a0
3 changed files with 5 additions and 5 deletions

View File

@@ -47,7 +47,7 @@
<div class="input-group">
<input type="hidden" name="dhcp-ignore" value="0">
<div class="form-check form-switch">
<input class="form-check-input" id="dhcp-ignore" type="checkbox" name="dhcp-ignore" value="1" <?php echo $conf['dhcp-ignore'] ? ' checked="checked"' : "" ?> aria-describedby="dhcp-ignore-description">
<input class="form-check-input" id="dhcp-ignore" type="checkbox" name="dhcp-ignore" value="1" <?php echo !empty($conf['dhcp-ignore']) ? ' checked="checked"' : "" ?> aria-describedby="dhcp-ignore-description">
<label class="form-check-label" for="dhcp-ignore"><?php echo _("Limit network access to static clients") ?></label>
</div>
<p id="dhcp-ignore-description">