From: Jo-Philipp Wich Date: Thu, 30 Oct 2008 02:39:54 +0000 (+0000) Subject: * luci/libs/cbi: fix possible "Error in template cbi/full_valuefooter: ?:0: attempt... X-Git-Tag: 0.9.0~1048 X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fluci.git;a=commitdiff_plain;h=50442d7438766d8d67b33167978c23eb7713375c * luci/libs/cbi: fix possible "Error in template cbi/full_valuefooter: ?:0: attempt to get length of field 'description' (a nil value)" --- diff --git a/libs/cbi/luasrc/view/cbi/full_valuefooter.htm b/libs/cbi/luasrc/view/cbi/full_valuefooter.htm index a9596441b..0ae45fb32 100644 --- a/libs/cbi/luasrc/view/cbi/full_valuefooter.htm +++ b/libs/cbi/luasrc/view/cbi/full_valuefooter.htm @@ -13,7 +13,7 @@ $Id$ -%> - <% if #self.description > 0 then -%> + <% if self.description and #self.description > 0 then -%> <% if not luci.util.instanceof( self, luci.cbi.Flag ) then -%>
<%- end %> @@ -42,4 +42,4 @@ $Id$ }, "cbip-<%=self.config.."-"..section.."-"..self.option%>"); <%- end %> -<%- end %> \ No newline at end of file +<%- end %>