Plugin Directory

Changeset 3241155


Ignore:
Timestamp:
02/16/2025 02:52:45 AM (10 months ago)
Author:
Alignak
Message:

v3.4.3

Location:
fast-velocity-minify/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • fast-velocity-minify/trunk/fvm.php

    r3241049 r3241155  
    44 * Plugin URI: https://www.upwork.com/fl/raulpeixoto
    55 * Description: Improve your speed score on GTmetrix, Pingdom Tools and Google PageSpeed Insights by merging and minifying CSS and JavaScript files into groups, compressing HTML and other speed optimizations.
    6  * Version: 3.4.2
     6 * Version: 3.4.3
    77 * Author: Raul Peixoto
    88 * Author URI: https://www.upwork.com/fl/raulpeixoto
  • fast-velocity-minify/trunk/inc/common.php

    r2852233 r3241155  
    17341734    if( defined('DOING_AJAX') && DOING_AJAX ){ return false; }
    17351735    if( defined('WP_CLI') && WP_CLI ){ return false; }
     1736    if( defined('DOING_CRON') && DOING_CRON ){ return false; }
    17361737    if( defined('XMLRPC_REQUEST') && XMLRPC_REQUEST ){ return false; }
    17371738    if( defined('WP_ADMIN') && WP_ADMIN ){ return false; }
  • fast-velocity-minify/trunk/inc/frontend.php

    r3241049 r3241155  
    10711071               
    10721072        # cleanup leftover markers
    1073         if(isset($hm) && !null($hm)) {
     1073        if(isset($hm) && !is_null($hm)) {
    10741074            $hm = str_replace(array('<!-- h_preheader -->', '<!-- h_header_function -->'), '', $hm);
    10751075        }
    1076         if(isset($hm_late) && !null($hm_late)) {
     1076        if(isset($hm_late) && !is_null($hm_late)) {
    10771077            $hm_late = str_replace(array('<!-- h_cssheader -->', '<!-- h_jsheader -->'), '', $hm_late);
    10781078        }
    1079         if(isset($fm) && !null($fm)) {
     1079        if(isset($fm) && !is_null($fm)) {
    10801080            $fm = str_replace('<!-- h_footer_fvm_scripts -->', '', $fm);
    10811081        }
  • fast-velocity-minify/trunk/readme.txt

    r3241049 r3241155  
    44Requires at least: 5.6
    55Requires PHP: 7.2
    6 Stable tag: 3.4.2
     6Stable tag: 3.4.3
    77Tested up to: 6.7.3
    88Text Domain: fast-velocity-minify
     
    4949
    5050== Changelog ==
     51
     52= 3.4.3 [2025.02.15] =
     53* bugfix
    5154
    5255= 3.4.2 [2025.02.15] =
Note: See TracChangeset for help on using the changeset viewer.