mirror of
				https://github.com/billz/raspap-webgui.git
				synced 2025-03-01 10:31:47 +00:00 
			
		
		
		
	Resolve php warnings on undefined vars
This commit is contained in:
		| @@ -3,7 +3,7 @@ | ||||
|   <div class="row"> | ||||
|     <div class="mb-3 col-md-6"> | ||||
|       <label for="code">Interface</label> | ||||
|         <?php SelectorOptions('interface', $interfaces, $ap_iface, 'cbxdhcpiface', 'loadInterfaceDHCPSelect', $DHCPDisabled); ?> | ||||
|         <?php SelectorOptions('interface', $interfaces, $ap_iface, 'cbxdhcpiface', 'loadInterfaceDHCPSelect'); ?> | ||||
|     </div> | ||||
|   </div> | ||||
|  | ||||
|   | ||||
| @@ -4,11 +4,11 @@ | ||||
|   <p><?php echo _("Enable these options to log <code>dhcpcd</code> and <code>dnsmasq</code> activity.") ?></p> | ||||
|  | ||||
|   <div class="form-check form-switch"> | ||||
|     <input class="form-check-input" id="log-dhcp" type="checkbox" name="log-dhcp" value="1" <?php echo $conf['log-dhcp'] ? ' checked="checked"' : "" ?> aria-describedby="log-dhcp-requests"> | ||||
|     <input class="form-check-input" id="log-dhcp" type="checkbox" name="log-dhcp" value="1" <?php echo !empty($conf['log-dhcp']) ? ' checked="checked"' : "" ?> aria-describedby="log-dhcp-requests"> | ||||
|     <label class="form-check-label" for="log-dhcp"><?php echo _("Log DHCP requests") ?></label> | ||||
|   </div> | ||||
|   <div class="form-check form-switch"> | ||||
|     <input class="form-check-input" id="log-queries" type="checkbox" name="log-queries" value="1" <?php echo $conf['log-queries'] ? ' checked="checked"' : "" ?> aria-describedby="log-dhcp-queries"> | ||||
|     <input class="form-check-input" id="log-queries" type="checkbox" name="log-queries" value="1" <?php echo !empty($conf['log-queries']) ? ' checked="checked"' : "" ?> aria-describedby="log-dhcp-queries"> | ||||
|     <label class="form-check-label align-middle" for="log-queries"><?php echo _("Log DNS queries") ?></label> | ||||
|     <input type="button" class="btn btn-outline btn-warning btn-sm align-top ms-4" id="js-cleardnsmasq-log" value="<?php echo _("Clear log"); ?>" /> | ||||
|   </div> | ||||
| @@ -16,7 +16,7 @@ | ||||
|   <div class="row"> | ||||
|     <div class="mb-3 col-md-8 mt-2"> | ||||
|       <?php | ||||
|       if ($conf['log-dhcp'] == 1 || $conf['log-queries'] == 1) { | ||||
|       if (($conf['log-dhcp'] ?? 0) == 1 || ($conf['log-queries'] ?? 0) == 1) { | ||||
|           echo '<textarea class="logoutput text-secondary" id="dnsmasq-log">'.htmlspecialchars($logdata, ENT_QUOTES).'</textarea>'; | ||||
|       } else { | ||||
|           echo '<textarea class="logoutput my-3"></textarea>'; | ||||
|   | ||||
| @@ -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"> | ||||
|   | ||||
		Reference in New Issue
	
	Block a user