diff options
author | Steven Barth <steven@midlink.org> | 2008-08-15 18:26:32 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2008-08-15 18:26:32 +0000 |
commit | 1d4196b3ff1bceaa858ffbee637bf212d5b5d428 (patch) | |
tree | 61e71efcc1f3d01ab0b108e5ab970d2765249ebd /libs | |
parent | d212e531d5b2b5933676b3ec3004c2be60980f97 (diff) |
Some more escaping
Diffstat (limited to 'libs')
-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 |