diff options
author | Jo-Philipp Wich <jo@mein.io> | 2018-04-10 12:01:39 +0200 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2018-04-10 12:01:43 +0200 |
commit | 48a5864f06528e5e454f6e009ec863122f997415 (patch) | |
tree | dc4a1351b1a4bc12b1f0815e403bad9c3a695718 /modules/luci-base/luasrc/view | |
parent | b194b8882e4d335a265f44c478ea8e3d7b2a99fc (diff) |
luci-base: error404: do not access request env directly
Instead of attempting to access the request environment directly (which does
not work anyway using the CGI SGI), use the already sanitized
dispatcher.context.request property to print out the not found url.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'modules/luci-base/luasrc/view')
-rw-r--r-- | modules/luci-base/luasrc/view/error404.htm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/luci-base/luasrc/view/error404.htm b/modules/luci-base/luasrc/view/error404.htm index bc7422683..a762f6038 100644 --- a/modules/luci-base/luasrc/view/error404.htm +++ b/modules/luci-base/luasrc/view/error404.htm @@ -7,5 +7,5 @@ <%+header%> <h2 name="content">404 <%:Not Found%></h2> <p><%:Sorry, the object you requested was not found.%></p> -<tt><%:Unable to dispatch%>: <%=luci.http.request.env.PATH_INFO%></tt> +<tt><%:Unable to dispatch%>: <%=url(unpack(luci.dispatcher.context.request))%></tt> <%+footer%> |