Plugin Directory

Changeset 3241049


Ignore:
Timestamp:
02/15/2025 05:58:21 PM (10 months ago)
Author:
Alignak
Message:

v3.4.2

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

Legend:

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

    r2981215 r3241049  
    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.1
     6 * Version: 3.4.2
    77 * Author: Raul Peixoto
    88 * Author URI: https://www.upwork.com/fl/raulpeixoto
    99 * Text Domain: fast-velocity-minify
    1010 * Requires at least: 5.6
    11  * Requires PHP: 7.3
     11 * Requires PHP: 7.2
    1212 * License: GPL2 / https://wordpress.org/about/license/
    1313*/
  • fast-velocity-minify/trunk/inc/frontend.php

    r2981215 r3241049  
    10711071               
    10721072        # cleanup leftover markers
    1073         $hm = str_replace(array('<!-- h_preheader -->', '<!-- h_header_function -->'), '', $hm);
    1074         $hm_late = str_replace(array('<!-- h_cssheader -->', '<!-- h_jsheader -->'), '', $hm_late);
    1075         $fm = str_replace('<!-- h_footer_fvm_scripts -->', '', $fm);
     1073        if(isset($hm) && !null($hm)) {
     1074            $hm = str_replace(array('<!-- h_preheader -->', '<!-- h_header_function -->'), '', $hm);
     1075        }
     1076        if(isset($hm_late) && !null($hm_late)) {
     1077            $hm_late = str_replace(array('<!-- h_cssheader -->', '<!-- h_jsheader -->'), '', $hm_late);
     1078        }
     1079        if(isset($fm) && !null($fm)) {
     1080            $fm = str_replace('<!-- h_footer_fvm_scripts -->', '', $fm);
     1081        }
    10761082       
    10771083        # append header and footer
  • fast-velocity-minify/trunk/readme.txt

    r2981215 r3241049  
    44Requires at least: 5.6
    55Requires PHP: 7.2
    6 Stable tag: 3.4.1
    7 Tested up to: 6.3.3
     6Stable tag: 3.4.2
     7Tested up to: 6.7.3
    88Text Domain: fast-velocity-minify
    99License: GPLv3 or later
     
    4949
    5050== Changelog ==
     51
     52= 3.4.2 [2025.02.15] =
     53* Quick PHP deprecation fixes and WP version compatibility update
    5154
    5255= 3.4.1 [2023.10.19] =
Note: See TracChangeset for help on using the changeset viewer.