From 162a053f428d585d7e2b111022f1ebe70cf5d4c3 Mon Sep 17 00:00:00 2001 From: Shreyas Zare Date: Sun, 16 Jun 2019 21:27:31 +0530 Subject: [PATCH] minor ui code fix. --- DnsServerCore/www/js/dhcp.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DnsServerCore/www/js/dhcp.js b/DnsServerCore/www/js/dhcp.js index 7848d9ef..3dae0bed 100644 --- a/DnsServerCore/www/js/dhcp.js +++ b/DnsServerCore/www/js/dhcp.js @@ -77,7 +77,7 @@ function refreshDhcpScopes() { tableHtmlRows = ""; for (var i = 0; i < dhcpScopes.length; i++) { - tableHtmlRows += "" + htmlEncode(dhcpScopes[i].name) + "" + dhcpScopes[i].startingAddress + "" + dhcpScopes[i].endingAddress + "" + dhcpScopes[i].subnetMask + "" + dhcpScopes[i].networkAddress + "" + dhcpScopes[i].broadcastAddress + "" + dhcpScopes[i].interfaceAddress + ""; + tableHtmlRows += "" + htmlEncode(dhcpScopes[i].name) + "" + dhcpScopes[i].startingAddress + "" + dhcpScopes[i].endingAddress + "" + dhcpScopes[i].subnetMask + "" + dhcpScopes[i].networkAddress + "" + dhcpScopes[i].broadcastAddress + "" + (dhcpScopes[i].interfaceAddress == null ? "" : dhcpScopes[i].interfaceAddress) + ""; tableHtmlRows += ""; if (dhcpScopes[i].enabled)