PluginProbe
Powered Cache – Caching and Optimization for WordPress – Easily Improve PageSpeed & Web Vitals Score / trunk
Powered Cache – Caching and Optimization for WordPress – Easily Improve PageSpeed & Web Vitals Score vtrunk
trunk 1.0 1.0.1 1.1 1.1.1 1.1.2 1.2 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 2.0 2.0.1 2.0.2 2.0.3 2.0.4 2.1 2.1.1 2.1.2 2.2 2.2.1 All 69 releases
← All changes | includes/classes/Optimizer/JS.php +1 -1 2.2trunk View file →
@@ -206,9 +206,9 @@
206 206 },
207 207 $js_array['paths']
208 208 );
209 209 $mtime = max( array_map( 'filemtime', $paths ) );
210 - $path_str = implode( ',', $js_array['paths'] ) . "?m=${mtime}j";
210 + $path_str = implode( ',', $js_array['paths'] ) . "?m={$mtime}j";
211 211
212 212 if ( $this->allow_gzip_compression ) {
213 213 $path_64 = base64_encode( gzcompress( $path_str ) ); // phpcs:ignore WordPress.PHP.DiscouragedPHPFunctions.obfuscation_base64_encode
214 214 if ( strlen( $path_str ) > ( strlen( $path_64 ) + 1 ) ) {