Changeset 3241049
- Timestamp:
- 02/15/2025 05:58:21 PM (10 months ago)
- Location:
- fast-velocity-minify/trunk
- Files:
-
- 3 edited
-
fvm.php (modified) (1 diff)
-
inc/frontend.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
fast-velocity-minify/trunk/fvm.php
r2981215 r3241049 4 4 * Plugin URI: https://www.upwork.com/fl/raulpeixoto 5 5 * 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. 16 * Version: 3.4.2 7 7 * Author: Raul Peixoto 8 8 * Author URI: https://www.upwork.com/fl/raulpeixoto 9 9 * Text Domain: fast-velocity-minify 10 10 * Requires at least: 5.6 11 * Requires PHP: 7. 311 * Requires PHP: 7.2 12 12 * License: GPL2 / https://wordpress.org/about/license/ 13 13 */ -
fast-velocity-minify/trunk/inc/frontend.php
r2981215 r3241049 1071 1071 1072 1072 # 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 } 1076 1082 1077 1083 # append header and footer -
fast-velocity-minify/trunk/readme.txt
r2981215 r3241049 4 4 Requires at least: 5.6 5 5 Requires PHP: 7.2 6 Stable tag: 3.4. 17 Tested up to: 6. 3.36 Stable tag: 3.4.2 7 Tested up to: 6.7.3 8 8 Text Domain: fast-velocity-minify 9 9 License: GPLv3 or later … … 49 49 50 50 == Changelog == 51 52 = 3.4.2 [2025.02.15] = 53 * Quick PHP deprecation fixes and WP version compatibility update 51 54 52 55 = 3.4.1 [2023.10.19] =
Note: See TracChangeset
for help on using the changeset viewer.