diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2008-08-23 15:17:10 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2008-08-23 15:17:10 +0000 |
commit | 4fc00fead31332769eb9c584460beda1f076d98d (patch) | |
tree | c6e270a24167f60dc55be6b82860f80548abf8bf | |
parent | d8b61a53941ce5f0e5139f7c4d776abefad9b466 (diff) |
* luci/libs: web: fix "dispatcher.lua:167: attempt to concatenate a
nil value" when running luci on a shell
-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 068f350ce..3ee42d72b 100644 --- a/libs/web/luasrc/dispatcher.lua +++ b/libs/web/luasrc/dispatcher.lua @@ -164,7 +164,7 @@ function dispatch(request) viewns.controller = luci.http.getenv("SCRIPT_NAME") viewns.media = luci.config.main.mediaurlbase viewns.resource = luci.config.main.resourcebase - viewns.REQUEST_URI = luci.http.getenv("SCRIPT_NAME") .. (luci.http.getenv("PATH_INFO") or "") + viewns.REQUEST_URI = (luci.http.getenv("SCRIPT_NAME") or "") .. (luci.http.getenv("PATH_INFO") or "") if track.dependent then local stat, err = pcall(assert, not track.auto) |