summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-statistics/luasrc/view/admin_statistics/networkplugins.htm
diff options
context:
space:
mode:
authorSteven Barth <steven@midlink.org>2009-01-02 21:33:10 +0000
committerSteven Barth <steven@midlink.org>2009-01-02 21:33:10 +0000
commit70ded13045e6b882859eeb0acb928eb8cacefd28 (patch)
treef1aaeaa1da2349686e7d297bd061455df4d21f81 /applications/luci-statistics/luasrc/view/admin_statistics/networkplugins.htm
parent748bbc8acb42065886d23dc7d95afa218dc42445 (diff)
Use luci.fs.access instead of luci.fs.isfile where applicable
Diffstat (limited to 'applications/luci-statistics/luasrc/view/admin_statistics/networkplugins.htm')
-rw-r--r--applications/luci-statistics/luasrc/view/admin_statistics/networkplugins.htm2
1 files changed, 1 insertions, 1 deletions
diff --git a/applications/luci-statistics/luasrc/view/admin_statistics/networkplugins.htm b/applications/luci-statistics/luasrc/view/admin_statistics/networkplugins.htm
index e29d97c9e3..54ba2b0e26 100644
--- a/applications/luci-statistics/luasrc/view/admin_statistics/networkplugins.htm
+++ b/applications/luci-statistics/luasrc/view/admin_statistics/networkplugins.htm
@@ -22,7 +22,7 @@ about open tcp connections, interface traffic, iptables rules etc.%></p>
<p><%:stat_networkplugins_installed Installed network plugins:%>
<ul>
<% for plugin, desc in pairs(plugins) do %>
- <% if luci.fs.isfile("/usr/lib/collectd/" .. plugin .. ".so") then %>
+ <% if luci.fs.access("/usr/lib/collectd/" .. plugin .. ".so") then %>
<li><a href="<%=controller%>/admin/statistics/collectd/network/<%=plugin%>"><%=desc%></a></li>
<% end %>
<% end %>