* luci/libs: only create <legend> if there is a title in tblsection template
authorJo-Philipp Wich <jow@openwrt.org>
Thu, 14 Aug 2008 01:33:48 +0000 (01:33 +0000)
committerJo-Philipp Wich <jow@openwrt.org>
Thu, 14 Aug 2008 01:33:48 +0000 (01:33 +0000)
libs/cbi/luasrc/view/cbi/tblsection.htm

index 7bb31ca..3630408 100644 (file)
@@ -22,7 +22,9 @@ end
 
 <!-- tblsection -->
 <fieldset class="cbi-section" id="cbi-<%=self.config%>-<%=self.sectiontype%>">
-       <legend><%=self.title%></legend>
+       <% if self.title and #self.title > 0 then -%>
+               <legend><%=self.title%></legend>
+       <%- end %>
        <div class="cbi-section-descr"><%=self.description%></div>
        <div class="cbi-section-node">
                <%- local count = 0 -%>