diff options
author | Steven Barth <steven@midlink.org> | 2008-03-28 22:55:27 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2008-03-28 22:55:27 +0000 |
commit | bd32a8aac5de9beb321b3cdfe180a8798c5a3379 (patch) | |
tree | a0b5e2926066e23c7356122a8afeb0ed0ef0e505 /src/ffluci/http.lua | |
parent | fb2a9a328d619ecf329e64cb500ff1385e3f8290 (diff) |
* CBI: improvements, bug fixes
* admin: Introduced wifi, olsr, password pages
Diffstat (limited to 'src/ffluci/http.lua')
-rw-r--r-- | src/ffluci/http.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ffluci/http.lua b/src/ffluci/http.lua index bf94105734..81076233b9 100644 --- a/src/ffluci/http.lua +++ b/src/ffluci/http.lua @@ -59,7 +59,7 @@ end function formvalue(key, default) local c = formvalues() - for match in key:gmatch("%w+") do + for match in key:gmatch("[%w-_]+") do c = c[match] if c == nil then return default |