From 8f03192ce4b39906db82658b0543e237e2a757d2 Mon Sep 17 00:00:00 2001 From: Steven Barth Date: Thu, 28 Aug 2008 18:57:34 +0000 Subject: [PATCH] Fixed luci.util.dumptable again --- libs/core/luasrc/util.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/core/luasrc/util.lua b/libs/core/luasrc/util.lua index 233bfcc33..260fc16a0 100644 --- a/libs/core/luasrc/util.lua +++ b/libs/core/luasrc/util.lua @@ -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) -- 2.25.1