* libs/web: Fixed reference to dispatcher in luci.dispatcher.build_url
[project/luci.git] / libs / web / luasrc / dispatcher.lua
index 60178741e9daf30b347dad581e5248ad7212467f..5bf3fc1d6f246ed207807267e73ebe770ebc8898 100644 (file)
@@ -40,7 +40,7 @@ local fi
 
 -- Builds a URL
 function build_url(...)
-       return luci.http.dispatcher() .. "/" .. table.concat(arg, "/")
+       return luci.http.getenv("SCRIPT_NAME") .. "/" .. table.concat(arg, "/")
 end
 
 -- Prints an error message or renders the "error401" template if available