webmcp

changeset 100:e75abc61d135

Bug fixed in request.get_param_strings()
author jbe
date Mon Oct 15 17:07:20 2012 +0200 (2012-10-15)
parents 66bdd686df30
children dd21d2e06a95
files framework/env/request/get_param_strings.lua
line diff
     1.1 --- a/framework/env/request/get_param_strings.lua	Mon Oct 15 17:04:07 2012 +0200
     1.2 +++ b/framework/env/request/get_param_strings.lua	Mon Oct 15 17:07:20 2012 +0200
     1.3 @@ -9,7 +9,7 @@
     1.4  function request.get_param_strings()
     1.5    local t = {}
     1.6    for key, value in pairs(request._params) do
     1.7 -    if type(request._params) == 'table' then
     1.8 +    if type(value) == 'table' then
     1.9        t[key] = table.new(value)
    1.10      else
    1.11        t[key] = value

Impressum / About Us