applications/luci-statistics: cope with uci list values, thanks Bluse for reporting...
[project/luci.git] / applications / luci-statistics / root / usr / bin / stat-genconfig
index 01a974e2ad8a16c70ab3fb435b8b729bc22ac8c0..171c1ae733fe9c0e6e41aac7f2cc9897bf284d5a 100755 (executable)
@@ -208,6 +208,13 @@ function _expand( s, n, nopad )
                end
 
                return str
+
+       elseif type(s) == "table" then
+               local str = ""
+
+               for i, v in ipairs(s) do
+                       str = str .. _string( v, n, nopad )
+               end
        end
 end