Changeset 3241155
- Timestamp:
- 02/16/2025 02:52:45 AM (10 months ago)
- Location:
- fast-velocity-minify/trunk
- Files:
-
- 4 edited
-
fvm.php (modified) (1 diff)
-
inc/common.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
r3241049 r3241155 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. 26 * Version: 3.4.3 7 7 * Author: Raul Peixoto 8 8 * Author URI: https://www.upwork.com/fl/raulpeixoto -
fast-velocity-minify/trunk/inc/common.php
r2852233 r3241155 1734 1734 if( defined('DOING_AJAX') && DOING_AJAX ){ return false; } 1735 1735 if( defined('WP_CLI') && WP_CLI ){ return false; } 1736 if( defined('DOING_CRON') && DOING_CRON ){ return false; } 1736 1737 if( defined('XMLRPC_REQUEST') && XMLRPC_REQUEST ){ return false; } 1737 1738 if( defined('WP_ADMIN') && WP_ADMIN ){ return false; } -
fast-velocity-minify/trunk/inc/frontend.php
r3241049 r3241155 1071 1071 1072 1072 # cleanup leftover markers 1073 if(isset($hm) && ! null($hm)) {1073 if(isset($hm) && !is_null($hm)) { 1074 1074 $hm = str_replace(array('<!-- h_preheader -->', '<!-- h_header_function -->'), '', $hm); 1075 1075 } 1076 if(isset($hm_late) && ! null($hm_late)) {1076 if(isset($hm_late) && !is_null($hm_late)) { 1077 1077 $hm_late = str_replace(array('<!-- h_cssheader -->', '<!-- h_jsheader -->'), '', $hm_late); 1078 1078 } 1079 if(isset($fm) && ! null($fm)) {1079 if(isset($fm) && !is_null($fm)) { 1080 1080 $fm = str_replace('<!-- h_footer_fvm_scripts -->', '', $fm); 1081 1081 } -
fast-velocity-minify/trunk/readme.txt
r3241049 r3241155 4 4 Requires at least: 5.6 5 5 Requires PHP: 7.2 6 Stable tag: 3.4. 26 Stable tag: 3.4.3 7 7 Tested up to: 6.7.3 8 8 Text Domain: fast-velocity-minify … … 49 49 50 50 == Changelog == 51 52 = 3.4.3 [2025.02.15] = 53 * bugfix 51 54 52 55 = 3.4.2 [2025.02.15] =
Note: See TracChangeset
for help on using the changeset viewer.