diff options
Diffstat (limited to 'applications/luci-app-privoxy/luasrc')
-rw-r--r-- | applications/luci-app-privoxy/luasrc/controller/privoxy.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/applications/luci-app-privoxy/luasrc/controller/privoxy.lua b/applications/luci-app-privoxy/luasrc/controller/privoxy.lua index 6439a30c3f..808ddbb447 100644 --- a/applications/luci-app-privoxy/luasrc/controller/privoxy.lua +++ b/applications/luci-app-privoxy/luasrc/controller/privoxy.lua @@ -21,7 +21,7 @@ local app_title = "Privoxy WEB proxy" local app_version = "1.0.6-1" function index() - entry( {"admin", "services", "privoxy"}, cbi("privoxy"), _("Privoxy WEB proxy"), 59) + entry( {"admin", "services", "privoxy"}, cbi("privoxy"), _("Privoxy WEB proxy"), 59).acl_depends = { "luci-app-privoxy" } entry( {"admin", "services", "privoxy", "logview"}, call("logread") ).leaf = true entry( {"admin", "services", "privoxy", "startstop"}, post("startstop") ).leaf = true entry( {"admin", "services", "privoxy", "status"}, call("get_pid") ).leaf = true |