Plugin Directory

Changeset 3112095


Ignore:
Timestamp:
07/04/2024 04:42:29 AM (20 months ago)
Author:
wordpressdr
Message:

Fix set_time_limit function error 1.0.4

Location:
wpinfecscanlite/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • wpinfecscanlite/trunk/readme.txt

    r3107875 r3112095  
    44Requires at least: 4.6
    55Tested up to: 6.5
    6 Stable tag: 1.0.3
     6Stable tag: 1.0.4
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    5252== Changelog ==
    5353
     54= 1.0.4 =
     55
     56Bug fix.
     57
    5458= 1.0.3 =
    5559
  • wpinfecscanlite/trunk/wpinfecscanlite.php

    r3107877 r3112095  
    44Plugin URI: https://wordpress.org/plugins/wpinfecscanlite/
    55description: Based on the most frequently detected malware detection patterns, this plug-in can exhaustively scan program files on the site to detect malware.
    6 Version: 1.0.3
     6Version: 1.0.4
    77Text Domain: wpinfecscanlite
    88Domain Path: /languages
     
    486486    }
    487487   
    488     set_time_limit(60*10);
    489    
     488    if ( function_exists( 'set_time_limit' ) ) {
     489        @set_time_limit(60*10);
     490    }
    490491   
    491492    $scanok = false;
Note: See TracChangeset for help on using the changeset viewer.