# HG changeset patch # User Matthew Wild # Date 1231733585 0 # Node ID 9666ad50a3533612ff325f3f3d5d1d6429234f4a # Parent 30f5dcb654bde63f2a6a3213ca0f78845882e917 mod_actions_http: Show tables as 'list's diff -r 30f5dcb654bd -r 9666ad50a353 plugins/mod_actions_http.lua --- a/plugins/mod_actions_http.lua Mon Jan 12 04:09:02 2009 +0000 +++ b/plugins/mod_actions_http.lua Mon Jan 12 04:13:05 2009 +0000 @@ -53,6 +53,8 @@ t_insert(s, " = "); if type(v) == "function" then t_insert(s, "action") + elseif type(v) == "table" then + t_insert(s, "list"); else t_insert(s, tostring(v)); end