summaryrefslogtreecommitdiffhomepage
path: root/libs
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2008-07-15 22:09:53 +0000
committerJo-Philipp Wich <jow@openwrt.org>2008-07-15 22:09:53 +0000
commit18f0ebfd8bd669a0792fc2e1c1d31e3b41eeda7b (patch)
tree961c9c080cc06d7566f0f3d8b0b18949684d1218 /libs
parent05d3bf06b4ae6f07ed1c55fd1f7b4e97cb0e2d3d (diff)
* luci/libs/cbi: fix syntax error in mvalue template
Diffstat (limited to 'libs')
-rw-r--r--libs/cbi/luasrc/view/cbi/mvalue.htm2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/cbi/luasrc/view/cbi/mvalue.htm b/libs/cbi/luasrc/view/cbi/mvalue.htm
index 092d2290f..f53660824 100644
--- a/libs/cbi/luasrc/view/cbi/mvalue.htm
+++ b/libs/cbi/luasrc/view/cbi/mvalue.htm
@@ -27,7 +27,7 @@ local v = self:valuelist(section)
for i, key in pairs(self.keylist) do
c = c + 1
%>
- <input type="checkbox"<%= attr("id", cbid..c) .. attr("name", cbid) .. attr("value", key) .. ifattr(luci.util.contains(v, key), "checked", "checked") />
+ <input type="checkbox"<%= attr("id", cbid..c) .. attr("name", cbid) .. attr("value", key) .. ifattr(luci.util.contains(v, key), "checked", "checked") %> />
<label<%= attr("for", cbid..c) %>><%=self.vallist[i]%></label><br />
<% if c == self.size then c = 0 %><br />
<% end end %>