summaryrefslogtreecommitdiffhomepage
path: root/core
diff options
context:
space:
mode:
authorSteven Barth <steven@midlink.org>2008-05-06 16:31:16 +0000
committerSteven Barth <steven@midlink.org>2008-05-06 16:31:16 +0000
commit21bd8ca76deec06b8e4f4dc3bc2ea75c7f9c3260 (patch)
tree57597996fb2ddc0a9c08bc35d6e2d747a8301baf /core
parent4ce666845f2a09bdba77448617edf4f85b1f0f80 (diff)
* Fixed apply function
* Fixed a few typos
Diffstat (limited to 'core')
-rw-r--r--core/src/ffluci/sgi/haserl.lua2
-rw-r--r--core/src/ffluci/sgi/webuci.lua2
2 files changed, 2 insertions, 2 deletions
diff --git a/core/src/ffluci/sgi/haserl.lua b/core/src/ffluci/sgi/haserl.lua
index 041cffc70..76dc3854a 100644
--- a/core/src/ffluci/sgi/haserl.lua
+++ b/core/src/ffluci/sgi/haserl.lua
@@ -31,7 +31,7 @@ FORM = FORM or {}
-- HTTP interface
-- Returns a table of all COOKIE, GET and POST Parameters
-function ffluci.http.formvalues(prefix)
+function ffluci.http.formvalues()
return FORM
end
diff --git a/core/src/ffluci/sgi/webuci.lua b/core/src/ffluci/sgi/webuci.lua
index 05348e44d..297780295 100644
--- a/core/src/ffluci/sgi/webuci.lua
+++ b/core/src/ffluci/sgi/webuci.lua
@@ -28,7 +28,7 @@ module("ffluci.sgi.webuci", package.seeall)
-- HTTP interface
-- Returns a table of all COOKIE, GET and POST Parameters
-function ffluci.http.formvalues(prefix)
+function ffluci.http.formvalues()
return webuci.vars
end