diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2008-05-29 00:58:52 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2008-05-29 00:58:52 +0000 |
commit | b8abce7f1e51bed61f54e01f6f1b7f3530583284 (patch) | |
tree | d827e51b8835a14da86b4ff3f250dc8249c9b57a | |
parent | b06638df6e776fc380687b06924a77b03055c00e (diff) |
* luci/core: dispatcher.lua: fix build_url()
-rw-r--r-- | libs/web/luasrc/dispatcher.lua | 2 |
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 |