diff options
-rw-r--r-- | libs/cbi/luasrc/view/cbi/dvalue.htm | 6 | ||||
-rw-r--r-- | libs/cbi/luasrc/view/cbi/lvalue.htm | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/libs/cbi/luasrc/view/cbi/dvalue.htm b/libs/cbi/luasrc/view/cbi/dvalue.htm index 7d22fe0d9..bdcbd317e 100644 --- a/libs/cbi/luasrc/view/cbi/dvalue.htm +++ b/libs/cbi/luasrc/view/cbi/dvalue.htm @@ -16,12 +16,12 @@ $Id$ <%+cbi/valueheader%> <% if self.value then if type(self.value) == "function" then %> - <%=self:value(section)%> + <%=luci.util.pcdata(self:value(section))%> <% else %> - <%=self.value%> + <%=luci.util.pcdata(self.value)%> <% end else %> - <%=self:cfgvalue(section)%> + <%=luci.util.pcdata(self:cfgvalue(section))%> <% end %> <%+cbi/valuefooter%> diff --git a/libs/cbi/luasrc/view/cbi/lvalue.htm b/libs/cbi/luasrc/view/cbi/lvalue.htm index cb41f53d1..5108e85c4 100644 --- a/libs/cbi/luasrc/view/cbi/lvalue.htm +++ b/libs/cbi/luasrc/view/cbi/lvalue.htm @@ -16,7 +16,7 @@ $Id$ <% if self.widget == "select" then %> <select onchange="cbi_d_update(this.id)"<%= attr("id", cbid) .. attr("name", cbid) .. ifattr(self.size, "size") %>> <% for i, key in pairs(self.keylist) do -%> - <option<%= attr("value", key) .. ifattr(self:cfgvalue(section) == key, "selected", "selected") %>><%=self.vallist[i]%></option> + <option<%= attr("value", key) .. ifattr(self:cfgvalue(section) == key, "selected", "selected") %>><%=luci.util.pcdata(self.vallist[i])%></option> <%- end %> </select> <% elseif self.widget == "radio" then |