diff options
author | Steven Barth <steven@midlink.org> | 2008-05-08 20:59:08 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2008-05-08 20:59:08 +0000 |
commit | ff955885022ee77d783f089b12926954be1acda8 (patch) | |
tree | 2a8c4199dadf5c05517006937ac491b227f380b0 /applications | |
parent | f547a274f7c1ab03ad7463c227146b4683e9be27 (diff) |
* applications/luci-splash: Minor bugfixes
Diffstat (limited to 'applications')
-rw-r--r-- | applications/luci-splash/root/usr/lib/luci-splash/htdocs/cgi-bin/index.cgi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/applications/luci-splash/root/usr/lib/luci-splash/htdocs/cgi-bin/index.cgi b/applications/luci-splash/root/usr/lib/luci-splash/htdocs/cgi-bin/index.cgi index 3bff85ee5..341aaa4b5 100644 --- a/applications/luci-splash/root/usr/lib/luci-splash/htdocs/cgi-bin/index.cgi +++ b/applications/luci-splash/root/usr/lib/luci-splash/htdocs/cgi-bin/index.cgi @@ -8,7 +8,7 @@ require("ffluci.model.uci") local srv local net -local ip = ffluci.http.remote_addr() +local ip = ffluci.http.env.REMOTE_ADDR for k, v in pairs(ffluci.model.uci.sections("network")) do if v[".type"] == "interface" and v.ipaddr then local p = ffluci.sys.net.mask4prefix(v.netmask) @@ -28,7 +28,7 @@ for k, v in pairs(ffluci.model.uci.sections("luci_splash")) do end if not srv then - ffluci.http.textheader() + ffluci.http.prepare_content("text/plain") return print("Unable to detect network settings!") end |