diff options
author | Sven Roederer <freifunk@it-solutions.geroedel.de> | 2019-07-06 14:27:42 +0200 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2020-07-19 20:14:47 +0200 |
commit | 354e4cb4a70d576a4f02e024f3c8fb1e72f09350 (patch) | |
tree | a011f0f0e332b7d70ca8b367058d3dd21fe45723 /applications/luci-app-tinyproxy | |
parent | 68521fca04e9b2ae801cc2daa4f920a2c43bc03f (diff) |
treewide: adapt to new luci.xml class
In the previous commit the luci.xml module was created, Let's change all
references to the old functions to the new xml-module.
Signed-off-by: Sven Roederer <freifunk@it-solutions.geroedel.de>
Diffstat (limited to 'applications/luci-app-tinyproxy')
-rw-r--r-- | applications/luci-app-tinyproxy/luasrc/view/tinyproxy_status.htm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/applications/luci-app-tinyproxy/luasrc/view/tinyproxy_status.htm b/applications/luci-app-tinyproxy/luasrc/view/tinyproxy_status.htm index 2ba9dddb8..9ff0b0292 100644 --- a/applications/luci-app-tinyproxy/luasrc/view/tinyproxy_status.htm +++ b/applications/luci-app-tinyproxy/luasrc/view/tinyproxy_status.htm @@ -35,8 +35,8 @@ if luci.http.formvalue("frame") == "1" then if not data then luci.http.write(translate("Failed to retrieve statistics from url:")) luci.http.write(" http://%s:%s" %{ - luci.util.pcdata(addr), - luci.util.pcdata(port) + luci.xml.pcdata(addr), + luci.xml.pcdata(port) }) end |