mirror of
				https://github.com/billz/raspap-webgui.git
				synced 2025-03-01 10:31:47 +00:00 
			
		
		
		
	Handle infinite value when constructing cfg
This commit is contained in:
		@@ -183,8 +183,10 @@ function updateDnsmasqConfig($iface,$status)
 | 
			
		||||
    $config .= 'interface='.$iface.PHP_EOL.'dhcp-range='.$_POST['RangeStart'].','.$_POST['RangeEnd'].','.$_POST['SubnetMask'].',';
 | 
			
		||||
    if ($_POST['RangeLeaseTimeUnits'] !== 'i') {
 | 
			
		||||
        $config .= $_POST['RangeLeaseTime'];
 | 
			
		||||
        $config .= $_POST['RangeLeaseTimeUnits'].PHP_EOL;
 | 
			
		||||
    } else {
 | 
			
		||||
        $config .= 'infinite'.PHP_EOL;
 | 
			
		||||
    }
 | 
			
		||||
    $config .= $_POST['RangeLeaseTimeUnits'].PHP_EOL;
 | 
			
		||||
    //  Static leases
 | 
			
		||||
    $staticLeases = array();
 | 
			
		||||
    for ($i=0; $i < count($_POST["static_leases"]["mac"]); $i++) {
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user