From 9e9c9d2671918d61d46ffed7466fea6b8fc937d3 Mon Sep 17 00:00:00 2001 From: Stoiko Ivanov Date: Thu, 8 Aug 2019 18:09:21 +0200 Subject: [PATCH] change display for 'archiveblockencrypted' As described in the release notes of ClamAV 0.101.0 the legacy Option ArchiveBlockEncrypted was used for blocking both encrypted archives _and_ documents. This patch reflects the change in the VirusDetectorOptions. [0] https://blog.clamav.net/2018/12/clamav-01010-has-been-released.html Signed-off-by: Stoiko Ivanov --- js/VirusDetectorOptions.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/VirusDetectorOptions.js b/js/VirusDetectorOptions.js index 318e197..73797ea 100644 --- a/js/VirusDetectorOptions.js +++ b/js/VirusDetectorOptions.js @@ -8,7 +8,7 @@ Ext.define('PMG.VirusDetectorOptions', { var me = this; me.add_boolean_row('archiveblockencrypted', - gettext('Block encrypted archives')); + gettext('Block encrypted archives and documents')); me.add_integer_row('archivemaxrec', gettext('Max recursion'), { minValue: 1, defaultValue: 5, @@ -48,7 +48,7 @@ Ext.define('PMG.VirusDetectorOptions', { onlineHelp: 'pmgconfig_clamav_options' }, interval: 5000, - cwidth1: 200, + cwidth1: 270, listeners: { itemdblclick: me.run_editor }