summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2010-11-20 18:24:17 +0000
committerJo-Philipp Wich <jow@openwrt.org>2010-11-20 18:24:17 +0000
commitd79895c0c3d8ac11e34a59a60e11d304c01fb08f (patch)
tree7a4edb6d2e9f9730874fe66c2da9015e8409f16b
parentff58e81d18a23fcbdfea89044b0600bcdd2d06da (diff)
libs/web: fix DynList template for empty values
-rw-r--r--libs/web/luasrc/view/cbi/dynlist.htm2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/web/luasrc/view/cbi/dynlist.htm b/libs/web/luasrc/view/cbi/dynlist.htm
index 90f3f1e90..5914186c2 100644
--- a/libs/web/luasrc/view/cbi/dynlist.htm
+++ b/libs/web/luasrc/view/cbi/dynlist.htm
@@ -18,7 +18,7 @@ $Id$
local vals = self:cfgvalue(section) or {}
for i=1, #vals + 1 do
local val = vals[i]
- if val and #val > 0 then
+ if (val and #val > 0) or (i == 1) then
%>
<input class="cbi-input-text" value="<%=pcdata(val)%>" onchange="cbi_d_update(this.id)" type="text"<%=
attr("id", cbid .. "." .. i) .. attr("name", cbid) .. ifattr(self.size, "size") ..