diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2018-03-13 16:36:18 +0000 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2018-03-13 16:36:18 +0000 |
commit | f73dba9e823e4e806c66d5ae4d660172acd371cc (patch) | |
tree | f1323b9a38ebd78fcf557d866b139b85c12ca654 /lualib/rspamadm | |
parent | dcad773071b6d13e7134a170be9ef71a06359cd9 (diff) | |
download | rspamd-f73dba9e823e4e806c66d5ae4d660172acd371cc.tar.gz rspamd-f73dba9e823e4e806c66d5ae4d660172acd371cc.zip |
[Minor] Understand both 'statistic' and 'statistics'
Diffstat (limited to 'lualib/rspamadm')
-rw-r--r-- | lualib/rspamadm/configwizard.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lualib/rspamadm/configwizard.lua b/lualib/rspamadm/configwizard.lua index 25e665aa0..65e289d47 100644 --- a/lualib/rspamadm/configwizard.lua +++ b/lualib/rspamadm/configwizard.lua @@ -622,7 +622,7 @@ return function(args, cfg) end end - if has_check('statistic') then + if has_check('statistic') or has_check('statistics') then setup_statistic(cfg, changes) end |