summaryrefslogtreecommitdiffhomepage
path: root/libs
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2008-05-29 00:58:52 +0000
committerJo-Philipp Wich <jow@openwrt.org>2008-05-29 00:58:52 +0000
commitb8abce7f1e51bed61f54e01f6f1b7f3530583284 (patch)
treed827e51b8835a14da86b4ff3f250dc8249c9b57a /libs
parentb06638df6e776fc380687b06924a77b03055c00e (diff)
* luci/core: dispatcher.lua: fix build_url()
Diffstat (limited to 'libs')
-rw-r--r--libs/web/luasrc/dispatcher.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/web/luasrc/dispatcher.lua b/libs/web/luasrc/dispatcher.lua
index fc551a4bd..3bf9ac9d4 100644
--- a/libs/web/luasrc/dispatcher.lua
+++ b/libs/web/luasrc/dispatcher.lua
@@ -46,7 +46,7 @@ built_tree = false
-- Builds a URL
-function build_url(...)
+function build_url(arg)
return luci.http.dispatcher() .. "/" .. table.concat(arg, "/")
end