Changeset 1683343
- Timestamp:
- 06/22/2017 09:38:46 AM (9 years ago)
- Location:
- virus-finder/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (2 diffs)
-
virus-finder.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
virus-finder/trunk/readme.txt
r1674336 r1683343 6 6 Requires at least: 2.8 7 7 Tested up to: 4.8.0 8 Stable tag: 1.0.1 08 Stable tag: 1.0.12 9 9 10 10 … … 29 29 == Changelog == 30 30 31 = 1.0.12 = 32 Bugfix for possible infinite loop 33 31 34 = 1.0.10 = 32 35 Tested with Wordpress 4.8 -
virus-finder/trunk/virus-finder.php
r1612578 r1683343 2 2 /** 3 3 * @package Virus_Finder 4 * @version 1.0. 74 * @version 1.0.12 5 5 */ 6 6 /* … … 9 9 Description: PHP virus, malware finder plugin. Smart and full scan for malware detection. 10 10 Author: Robert Buzsik 11 Version: 1.0. 711 Version: 1.0.12 12 12 Author URI: http://wphospital.hu/ 13 13 */ … … 17 17 if (is_admin()) 18 18 { 19 define("virus_finder_maxtime", ini_get("max_execution_time")-2); 19 20 add_action('admin_menu', 'virus_finder_menu'); 20 21 add_action('admin_init', 'virus_finder_init'); … … 204 205 { 205 206 define("virus_finder_startTime", virus_finder_microtime_float()); 206 define("virus_finder_maxtime", ini_get("max_execution_time")-2);207 207 208 208 /* … … 315 315 } 316 316 317 header("Location: ".admin_url('admin.php?page=virus-finder')." ?virus_finder_token=".$_GET["virus_finder_token"]."&time=".time());317 header("Location: ".admin_url('admin.php?page=virus-finder')."&virus_finder_token=".$_GET["virus_finder_token"]."&time=".time()); 318 318 exit; 319 319 }
Note: See TracChangeset
for help on using the changeset viewer.