diff options
author | Steven Barth <steven@midlink.org> | 2009-11-15 19:02:39 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2009-11-15 19:02:39 +0000 |
commit | 6a51fbe67309fe074eb818ee81f3907bc576da0e (patch) | |
tree | cd97162611b3e18bea48f96b7ec8bff33a1333d6 /libs/cbi | |
parent | 98f1d09a06dd917fa8576f3e677af17ccf736c85 (diff) |
Minor fixes
Diffstat (limited to 'libs/cbi')
-rw-r--r-- | libs/cbi/luasrc/view/cbi/lvalue.htm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/cbi/luasrc/view/cbi/lvalue.htm b/libs/cbi/luasrc/view/cbi/lvalue.htm index b69934a0f..8c7581a2c 100644 --- a/libs/cbi/luasrc/view/cbi/lvalue.htm +++ b/libs/cbi/luasrc/view/cbi/lvalue.htm @@ -24,7 +24,7 @@ $Id$ for i, key in pairs(self.keylist) do c = c + 1 %> - <input class="cbi-input-radio" onclick="cbi_d_update(this.id)" onchange="cbi_d_update(this.id)" type="radio"<%= attr("id", cbid..c) .. attr("name", cbid) .. attr("value", key) .. ifattr(self:cfgvalue(section) == key, "checked", "checked") %> /> + <input class="cbi-input-radio" onclick="cbi_d_update(this.id)" onchange="cbi_d_update(this.id)" type="radio"<%= attr("id", cbid..c) .. attr("name", cbid) .. attr("value", key) .. ifattr((self:cfgvalue(section) or self.default) == key, "checked", "checked") %> /> <label<%= attr("for", cbid..c) %>><%=self.vallist[i]%></label> <% if c == self.size then c = 0 %><% if self.orientation == "horizontal" then %> <% else %><br /><% end %> <% end end %> |