Changeset 3115034
- Timestamp:
- 07/09/2024 01:40:52 PM (20 months ago)
- Location:
- merge-minify-refresh/trunk
- Files:
-
- 2 edited
-
merge-minify-refresh.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
merge-minify-refresh/trunk/merge-minify-refresh.php
r3087778 r3115034 4 4 * Plugin URI: https://wordpress.org/plugins/merge-minify-refresh 5 5 * Description: Merge/Concatenate & Minify CSS & JS. 6 * Version: 2. 86 * Version: 2.9 7 7 * Author: Launch Interactive 8 8 * Author URI: http://launchinteractive.com.au … … 512 512 public function remove_cssjs_ver($src) 513 513 { 514 if($src && strpos($src,'?ver=') !== false) 514 if( 515 $src && 516 str_starts_with($src, MMR_CACHE_URL) && //only strip ver from MMR urls 517 strpos($src,'?ver=') !== false) 515 518 { 516 519 $src = remove_query_arg('ver', $src); -
merge-minify-refresh/trunk/readme.txt
r3089082 r3115034 99 99 == Changelog == 100 100 101 = 2.9 = 102 * Only remove css and js url vars for files generated by MMR 103 101 104 = 2.8 = 102 105 * Change the way non UTF-8 files are detected for better support
Note: See TracChangeset
for help on using the changeset viewer.