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 /modules/luci-mod-system/luasrc | |
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 'modules/luci-mod-system/luasrc')
-rw-r--r-- | modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua b/modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua index c81466c874..91c6549163 100644 --- a/modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua +++ b/modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua @@ -68,7 +68,7 @@ else break else files[#files+1] = "<li>" - files[#files+1] = luci.util.pcdata(ln) + files[#files+1] = luci.xml.pcdata(ln) files[#files+1] = "</li>" end end |