diff options
author | Steven Barth <steven@midlink.org> | 2008-06-15 17:45:10 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2008-06-15 17:45:10 +0000 |
commit | eae0e447989a1a37ce6cb8df9f1f353738aab4f6 (patch) | |
tree | 4d8568109967259150413e873af2592a6f975373 /applications/luci-statistics | |
parent | 3455ee6d8d9eb3c0ee8459adb586a800dadaf737 (diff) |
* Added support for CGI SGI
Diffstat (limited to 'applications/luci-statistics')
-rw-r--r-- | applications/luci-statistics/luasrc/controller/luci_statistics/luci_statistics.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/applications/luci-statistics/luasrc/controller/luci_statistics/luci_statistics.lua b/applications/luci-statistics/luasrc/controller/luci_statistics/luci_statistics.lua index aeee63630..67ea8a6f0 100644 --- a/applications/luci-statistics/luasrc/controller/luci_statistics/luci_statistics.lua +++ b/applications/luci-statistics/luasrc/controller/luci_statistics/luci_statistics.lua @@ -80,7 +80,7 @@ function index() page.setuser = "nobody" page.setgroup = "nogroup" - local vars = luci.http.getvalue() + local vars = luci.http.formvalue() local span = vars.timespan or nil for i, plugin in luci.util.vspairs( tree:plugins() ) do @@ -148,7 +148,7 @@ function statistics_render() require("luci.template") require("luci.model.uci") - local vars = luci.http.getvalue() + local vars = luci.http.formvalue() local req = luci.dispatcher.context.request local path = luci.dispatcher.context.dispatched.path local uci = luci.model.uci |