diff options
author | Steven Barth <steven@midlink.org> | 2008-06-14 14:12:12 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2008-06-14 14:12:12 +0000 |
commit | 855b7582d3576f45693e3a48fdb253c813cf4dce (patch) | |
tree | b912f63dc43f3b696385083542c801dba8c53976 /modules/admin-core/luasrc | |
parent | 50fd29841540bb8b1735291b72853454679e9e62 (diff) |
* Rewrote Luci to be coroutine-safe allowing the use of non-forking webservers
* Setting base version to 0.7
Diffstat (limited to 'modules/admin-core/luasrc')
-rw-r--r-- | modules/admin-core/luasrc/view/admin_system/upgrade.htm | 2 | ||||
-rw-r--r-- | modules/admin-core/luasrc/view/error404.htm | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/admin-core/luasrc/view/admin_system/upgrade.htm b/modules/admin-core/luasrc/view/admin_system/upgrade.htm index 7e23c5400..cc7438655 100644 --- a/modules/admin-core/luasrc/view/admin_system/upgrade.htm +++ b/modules/admin-core/luasrc/view/admin_system/upgrade.htm @@ -4,7 +4,7 @@ <p><%:a_s_flash_upgrade1%></p> <br /> <% if sysupgrade and not ret then %> -<form method="post" action="<%=uploadctrl%><%=luci.http.env.PATH_INFO%>" enctype="multipart/form-data"> +<form method="post" action="<%=luci.http.getenv("REQUEST_URI")%>" enctype="multipart/form-data"> <div class="cbi-section-node"> <div class="cbi-value clear"> <div class="cbi-value-title left"><%:a_s_flash_fwimage%></div> diff --git a/modules/admin-core/luasrc/view/error404.htm b/modules/admin-core/luasrc/view/error404.htm index 60daee2cb..03f6c54f3 100644 --- a/modules/admin-core/luasrc/view/error404.htm +++ b/modules/admin-core/luasrc/view/error404.htm @@ -1,5 +1,5 @@ <%+header%> <h1>404 Not Found</h1> <p>Sorry, the object you requested was not found.</p> -<tt>Unable to dispatch: <%=luci.http.env.PATH_INFO%></tt> +<tt>Unable to dispatch: <%=luci.http.request.env.PATH_INFO%></tt> <%+footer%>
\ No newline at end of file |