diff options
author | Dirk Brenken <dev@brenken.org> | 2021-02-20 10:43:50 +0100 |
---|---|---|
committer | Dirk Brenken <dev@brenken.org> | 2021-02-20 15:04:37 +0100 |
commit | 2b9fca81783feb192206e4b088f322dc0e9b3738 (patch) | |
tree | 2f88449cb65c514fae09a9a5f714b5762f1feb53 /applications/luci-app-banip/htdocs/luci-static | |
parent | 75885d7ca70bc1baf2718fbb15e4ece8f20b1938 (diff) |
luci-app-banip: sync with 0.7.3
* just a typo fix from last commit
Signed-off-by: Dirk Brenken <dev@brenken.org>
Diffstat (limited to 'applications/luci-app-banip/htdocs/luci-static')
-rw-r--r-- | applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js b/applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js index 87c232c580..44247cc106 100644 --- a/applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js +++ b/applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js @@ -680,17 +680,17 @@ return view.extend({ o.optional = true; o.rmempty = true; - o = s.taboption('adv_log', form.Value, 'ban_ssh_logcount', _('SSH Log Count'), _('Number of the failed ssh login repetitions of the same ip in the log before banning.')); + o = s.taboption('adv_log', form.Value, 'ban_ssh_logcount', _('SSH Log Count'), _('Number of failed ssh login repetitions of the same ip in the log before banning.')); o.placeholder = '3'; o.datatype = 'range(1,10)'; o.rmempty = true; - o = s.taboption('adv_log', form.Value, 'ban_luci_logcount', _('LuCI Log Count'), _('Number of the failed LuCI login repetitions of the same ip in the log before banning.')); + o = s.taboption('adv_log', form.Value, 'ban_luci_logcount', _('LuCI Log Count'), _('Number of failed LuCI login repetitions of the same ip in the log before banning.')); o.placeholder = '3'; o.datatype = 'range(1,10)'; o.rmempty = true; - o = s.taboption('adv_log', form.Value, 'ban_nginx_logcount', _('NGINX Log Count'), _('Number of the failed nginx requests of the same ip in the log before banning.')); + o = s.taboption('adv_log', form.Value, 'ban_nginx_logcount', _('NGINX Log Count'), _('Number of failed nginx requests of the same ip in the log before banning.')); o.placeholder = '5'; o.datatype = 'range(1,20)'; o.rmempty = true; |