diff --git a/src/www/status_dhcp_leases.php b/src/www/status_dhcp_leases.php index 7c7aec1f0..1472b5f57 100644 --- a/src/www/status_dhcp_leases.php +++ b/src/www/status_dhcp_leases.php @@ -37,7 +37,7 @@ function adjust_utc($dt) { foreach (config_read_array('dhcpd') as $dhcpd) { if (!empty($dhcpd['dhcpleaseinlocaltime'])) { - /* if we want local time, so specify this is actually UTC */ + /* we want local time, so specify this is actually UTC */ return strftime('%Y/%m/%d %H:%M:%S', strtotime("{$dt} UTC")); } } diff --git a/src/www/status_dhcpv6_leases.php b/src/www/status_dhcpv6_leases.php index 6662a0c4d..40e135fc3 100644 --- a/src/www/status_dhcpv6_leases.php +++ b/src/www/status_dhcpv6_leases.php @@ -37,7 +37,7 @@ function adjust_utc($dt) { foreach (config_read_array('dhcpdv6') as $dhcpdv6) { if (!empty($dhcpdv6['dhcpv6leaseinlocaltime'])) { - /* if we want local time, so specify this is actually UTC */ + /* we want local time, so specify this is actually UTC */ return strftime('%Y/%m/%d %H:%M:%S', strtotime("{$dt} UTC")); } }