diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2012-11-15 13:22:04 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2012-11-15 13:22:04 +0000 |
commit | 7933cad0fa05659bc347ecf2d604b6f5df07ff61 (patch) | |
tree | 38af6bdfe6c675a5b386057373141707d0682f31 | |
parent | ecdf523b074ff80c18183c4b94ca9f194739e1ab (diff) |
modules/admin-full: fix broken XHTML on diagnostics page
-rw-r--r-- | modules/admin-full/luasrc/view/admin_network/diagnostics.htm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/admin-full/luasrc/view/admin_network/diagnostics.htm b/modules/admin-full/luasrc/view/admin_network/diagnostics.htm index abbc90623..64666880d 100644 --- a/modules/admin-full/luasrc/view/admin_network/diagnostics.htm +++ b/modules/admin-full/luasrc/view/admin_network/diagnostics.htm @@ -84,8 +84,8 @@ local has_traceroute6 = fs.access("/usr/bin/traceroute6") <input type="button" value="<%:Ping%>" class="cbi-button cbi-button-apply" onclick="update_status(this.form.ping,this.form.proto)" /> <% if has_ping6 then %> <div style="width:100%; margin-top: 10px;"> - <input type="radio" name="proto" value="" checked> <%:IPv4%> - <input type="radio" name="proto" value="6"> <%:IPv6%> + <input type="radio" name="proto" value="" checked="checked" /> <%:IPv4%> + <input type="radio" name="proto" value="6" /> <%:IPv6%> </div> <%end%> </div> @@ -95,8 +95,8 @@ local has_traceroute6 = fs.access("/usr/bin/traceroute6") <input type="button" value="<%:Traceroute%>" class="cbi-button cbi-button-apply" onclick="update_status(this.form.traceroute,this.form.trproto)" /> <% if has_traceroute6 then %> <div style="width:100%; margin-top: 10px;"> - <input type="radio" name="trproto" value="" checked> <%:IPv4%> - <input type="radio" name="trproto" value="6"> <%:IPv6%> + <input type="radio" name="trproto" value="" checked="checked" /> <%:IPv4%> + <input type="radio" name="trproto" value="6" /> <%:IPv6%> </div> <%end%> </div> |