Skip to content

Commit

Permalink
Fix. Scanner. Skipped files. Description fixed.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandergull committed May 16, 2024
1 parent 4fe4f37 commit 04c719b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions inc/spbc-settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -5482,10 +5482,10 @@ function spbc__get_accordion_tab_info_block_html($for)
$header_p = __('Please, note the restrictions', 'security-malware-firewall');
$empty_info = __('Scanner does not check and report about empty files (file size is 0).', 'security-malware-firewall');
$signatures_restrict = __('Signatures module does not check files with size larger then %d Kb.', 'security-malware-firewall');
$value = \CleantalkSP\Common\Scanner\HeuristicAnalyser\HeuristicAnalyser::HEURISTIC_SCAN_MAX_FILE_SIZE / 1024;
$value = \CleantalkSP\Common\Scanner\SignaturesAnalyser\Controller::SIGNATURES_SCAN_MAX_FILE_SIZE / 1024;
$signatures_restrict = sprintf($signatures_restrict, $value);
$heuristic_restrict = __('Heuristic module does not check files with size larger then %d Kb. ', 'security-malware-firewall');
$value = \CleantalkSP\Common\Scanner\SignaturesAnalyser\Controller::SIGNATURES_SCAN_MAX_FILE_SIZE / 1024;
$value = \CleantalkSP\Common\Scanner\HeuristicAnalyser\HeuristicAnalyser::HEURISTIC_SCAN_MAX_FILE_SIZE / 1024;
$heuristic_restrict = sprintf($heuristic_restrict, $value);

$suggest_file_manger = __('You can use a file manager to manage files in the list.', 'security-malware-firewall');
Expand Down

0 comments on commit 04c719b

Please sign in to comment.