确实存在一处笔误

pull/47/head
loveshell 2015-04-07 23:39:41 +08:00
parent 9a2efe4b5c
commit 564979d0c1
1 changed files with 1 additions and 1 deletions

View File

@ -94,7 +94,7 @@ function args()
local args = ngx.req.get_uri_args()
for key, val in pairs(args) do
if type(val)=='table' then
if val == false then
if val ~= false then
data=table.concat(val, " ")
end
else