libs/web: fix missing escapes in network_ifacelist widget
This commit is contained in:
parent
abb2ed69e3
commit
018cbe69a9
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@
|
||||||
%> />  
|
%> />  
|
||||||
<label<%=attr("for", cbid .. "." .. iface:name())%>>
|
<label<%=attr("for", cbid .. "." .. iface:name())%>>
|
||||||
<% if link then -%><a href="<%=link%>"><% end -%>
|
<% if link then -%><a href="<%=link%>"><% end -%>
|
||||||
<img title="<%=iface:get_type_i18n()%>" style="width:16px; height:16px; vertical-align:middle" src="<%=resource%>/icons/<%=iface:type()%><%=iface:is_up() and "" or "_disabled"%>.png" />
|
<img<%=attr("title", iface:get_i18n())%> style="width:16px; height:16px; vertical-align:middle" src="<%=resource%>/icons/<%=iface:type()%><%=iface:is_up() and "" or "_disabled"%>.png" />
|
||||||
<% if link then -%></a><% end -%>
|
<% if link then -%></a><% end -%>
|
||||||
<%=pcdata(iface:get_i18n())%>
|
<%=pcdata(iface:get_i18n())%>
|
||||||
<% local ns = iface:get_networks(); if #ns > 0 then %>(
|
<% local ns = iface:get_networks(); if #ns > 0 then %>(
|
||||||
|
|
Loading…
Reference in a new issue