Fixed luci.util.dumptable again
authorSteven Barth <steven@midlink.org>
Thu, 28 Aug 2008 18:57:34 +0000 (18:57 +0000)
committerSteven Barth <steven@midlink.org>
Thu, 28 Aug 2008 18:57:34 +0000 (18:57 +0000)
libs/core/luasrc/util.lua

index 233bfcc..260fc16 100644 (file)
@@ -191,7 +191,7 @@ function dumptable(t, maxdepth, i, seen)
        
        for k,v in pairs(t) do
                perror(string.rep("\t", i) .. tostring(k) .. "\t" .. tostring(v))
-               if type(v) == "table" and i < maxdepth then
+               if type(v) == "table" and (not maxdepth or i < maxdepth) then
                        if not seen[v] then
                                seen[v] = true
                                dumptable(v, maxdepth, i+1, seen)