Changeset 3171407
- Timestamp:
- 10/18/2024 11:34:24 AM (18 months ago)
- Location:
- gdata-antivirus
- Files:
-
- 4 edited
- 1 copied
-
tags/2.0.6 (copied) (copied from gdata-antivirus/branches/2.0.6)
-
trunk/PluginPage/FullScan/FullScanMenuPage.php (modified) (2 diffs)
-
trunk/Readme.txt (modified) (1 diff)
-
trunk/composer.json (modified) (1 diff)
-
trunk/gdata-antivirus.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
gdata-antivirus/trunk/PluginPage/FullScan/FullScanMenuPage.php
r3170097 r3171407 137 137 $it = new \RecursiveIteratorIterator(new \RecursiveDirectoryIterator(ABSPATH, \FilesystemIterator::SKIP_DOTS)); 138 138 $files = array(); 139 $this->scans->reset(); 139 140 foreach ($it as $file_path) { 140 141 if (!$file_path instanceof \SplFileInfo) { … … 203 204 $scheduled_scans = $this->scans->scheduled_count(); 204 205 $finished_scans = $this->scans->finished_count(); 205 if ($scheduled_scans <= $finished_scans) { 206 $cron_jobs = wp_get_ready_cron_jobs(); 207 $still_running = \false; 208 foreach ($cron_jobs as $key => $cron) { 209 foreach ($cron as $name => $job) { 210 if ($name == 'gdatacyberdefenseag_antivirus_scan_batch') { 211 $still_running = \true; 212 break; 213 } 214 } 215 } 216 if ($still_running === \false) { 206 217 ?> 207 218 <form action="admin-post.php" method="post"> -
gdata-antivirus/trunk/Readme.txt
r3171281 r3171407 5 5 Tested up to: 6.6 6 6 Requires PHP: 8.1 7 Stable tag: 2.0. 57 Stable tag: 2.0.6 8 8 License: GNU General Public License v3.0 9 9 License URI: https://github.com/GDATASoftwareAG/vaas/blob/main/LICENSE -
gdata-antivirus/trunk/composer.json
r3171281 r3171407 1 1 { 2 2 "name": "gdatacyberdefenseag\/gdata-antivirus", 3 "version": "2.0. 5",3 "version": "2.0.6", 4 4 "autoload": { 5 5 "psr-4": { -
gdata-antivirus/trunk/gdata-antivirus.php
r3171281 r3171407 12 12 * @wordpress-plugin 13 13 * Plugin Name: G DATA Antivirus 14 * Version: 2.0. 514 * Version: 2.0.6 15 15 * Requires at least: 6.2 16 16 * Tested up to: 6.6
Note: See TracChangeset
for help on using the changeset viewer.