webmcp

changeset 240:bcb3aed3a71e

Added missing local statement in table.new(...)
author jbe
date Sun Mar 01 00:12:48 2015 +0100 (2015-03-01)
parents 1d2b463a65b0
children 3db6f3ad0703
files framework/env/__init.lua
line diff
     1.1 --- a/framework/env/__init.lua	Sun Mar 01 00:09:47 2015 +0100
     1.2 +++ b/framework/env/__init.lua	Sun Mar 01 00:12:48 2015 +0100
     1.3 @@ -27,7 +27,7 @@
     1.4  
     1.5  --]]--
     1.6  function table.new(tbl)
     1.7 -  new_tbl = {}
     1.8 +  local new_tbl = {}
     1.9    if tbl then
    1.10      for key, value in pairs(tbl) do
    1.11        new_tbl[key] = value

Impressum / About Us