diff options
author | Steven Barth <steven@midlink.org> | 2009-01-02 21:33:10 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2009-01-02 21:33:10 +0000 |
commit | 70ded13045e6b882859eeb0acb928eb8cacefd28 (patch) | |
tree | f1aaeaa1da2349686e7d297bd061455df4d21f81 /modules/freifunk/luasrc | |
parent | 748bbc8acb42065886d23dc7d95afa218dc42445 (diff) |
Use luci.fs.access instead of luci.fs.isfile where applicable
Diffstat (limited to 'modules/freifunk/luasrc')
-rw-r--r-- | modules/freifunk/luasrc/controller/freifunk/freifunk.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/freifunk/luasrc/controller/freifunk/freifunk.lua b/modules/freifunk/luasrc/controller/freifunk/freifunk.lua index 533211b00..ff739fd5f 100644 --- a/modules/freifunk/luasrc/controller/freifunk/freifunk.lua +++ b/modules/freifunk/luasrc/controller/freifunk/freifunk.lua @@ -52,7 +52,7 @@ function index() assign({"freifunk", "olsr"}, {"admin", "status", "olsr"}, "OLSR", 30) - if luci.fs.isfile("/etc/config/luci_statistics") then + if luci.fs.access("/etc/config/luci_statistics") then assign({"freifunk", "graph"}, {"admin", "statistics", "graph"}, i18n("stat_statistics", "Statistiken"), 40) end |