Plugin Directory

Changeset 1683343


Ignore:
Timestamp:
06/22/2017 09:38:46 AM (9 years ago)
Author:
wordpressvirusremoval
Message:

Version 1.0.12 – Bugfix for possible infinite loop

Location:
virus-finder/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • virus-finder/trunk/readme.txt

    r1674336 r1683343  
    66Requires at least: 2.8
    77Tested up to: 4.8.0
    8 Stable tag: 1.0.10
     8Stable tag: 1.0.12
    99
    1010
     
    2929== Changelog ==
    3030
     31= 1.0.12 =
     32Bugfix for possible infinite loop
     33
    3134= 1.0.10 =
    3235Tested with Wordpress 4.8
  • virus-finder/trunk/virus-finder.php

    r1612578 r1683343  
    22/**
    33 * @package Virus_Finder
    4  * @version 1.0.7
     4 * @version 1.0.12
    55 */
    66/*
     
    99Description: PHP virus, malware finder plugin. Smart and full scan for malware detection.
    1010Author: Robert Buzsik
    11 Version: 1.0.7
     11Version: 1.0.12
    1212Author URI: http://wphospital.hu/
    1313*/
     
    1717if (is_admin())
    1818{
     19    define("virus_finder_maxtime", ini_get("max_execution_time")-2);
    1920    add_action('admin_menu', 'virus_finder_menu');
    2021    add_action('admin_init', 'virus_finder_init');
     
    204205        {
    205206            define("virus_finder_startTime", virus_finder_microtime_float());
    206             define("virus_finder_maxtime", ini_get("max_execution_time")-2);       
    207207           
    208208            /*
     
    315315        }
    316316
    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());
    318318        exit;
    319319    }
Note: See TracChangeset for help on using the changeset viewer.