Version Description
- Fixed HTML minification of img elements containing embedded SVG strings
- Removed an identifying value for GDPR
Download this release
Release Info
Developer | joemoto |
Plugin | W3 Total Cache |
Version | 0.13.3 |
Comparing to | |
See all releases |
Code changes from version 0.13.2 to 0.13.3
- Extension_FragmentCache_Page_View.php +1 -1
- Generic_Plugin_Admin.php +0 -1
- lib/Minify/Minify/HTML.php +1 -1
- readme.txt +6 -3
- w3-total-cache-api.php +1 -1
- w3-total-cache.php +1 -1
Extension_FragmentCache_Page_View.php
CHANGED
@@ -20,7 +20,7 @@ $engine = $config->get_string( array( 'fragmentcache', 'engine' ) );
|
|
20 |
Fragment caching
|
21 |
<?php if ( !empty( $engine ) ): ?>
|
22 |
via
|
23 |
-
<strong><?php echo Cache::engine_name( $engine )
|
24 |
<?php endif ?>
|
25 |
|
26 |
is currently
|
20 |
Fragment caching
|
21 |
<?php if ( !empty( $engine ) ): ?>
|
22 |
via
|
23 |
+
<strong><?php echo Cache::engine_name( $engine ); ?></strong>
|
24 |
<?php endif ?>
|
25 |
|
26 |
is currently
|
Generic_Plugin_Admin.php
CHANGED
@@ -290,7 +290,6 @@ class Generic_Plugin_Admin {
|
|
290 |
'dimension9': '<?php echo esc_attr( $state->get_string( 'common.install_version' ) ) ?>',
|
291 |
'dimension10': '<?php echo esc_attr( Util_Environment::w3tc_edition( $this->_config ) ) ?>',
|
292 |
'dimension11': '<?php echo esc_attr( Util_Widget::list_widgets() ) ?>',
|
293 |
-
'userId': '<?php echo $current_user->user_email ?>',
|
294 |
'page': '<?php echo $page ?>'
|
295 |
});
|
296 |
|
290 |
'dimension9': '<?php echo esc_attr( $state->get_string( 'common.install_version' ) ) ?>',
|
291 |
'dimension10': '<?php echo esc_attr( Util_Environment::w3tc_edition( $this->_config ) ) ?>',
|
292 |
'dimension11': '<?php echo esc_attr( Util_Widget::list_widgets() ) ?>',
|
|
|
293 |
'page': '<?php echo $page ?>'
|
294 |
});
|
295 |
|
lib/Minify/Minify/HTML.php
CHANGED
@@ -158,7 +158,7 @@ class Minify_HTML {
|
|
158 |
|
159 |
// remove trailing slash from void elements
|
160 |
$this->_html = preg_replace(
|
161 |
-
'~<(area|base|br|col|command|embed|hr|img|input|keygen|link|meta|param|source|track|wbr)([
|
162 |
,'<$1$2>'
|
163 |
,$this->_html);
|
164 |
|
158 |
|
159 |
// remove trailing slash from void elements
|
160 |
$this->_html = preg_replace(
|
161 |
+
'~<(area|base|br|col|command|embed|hr|img|input|keygen|link|meta|param|source|track|wbr)(([^\'">]|\"[^\"]*\"|\'[^\']*\'|)*?)\\s*[/]?>~i'
|
162 |
,'<$1$2>'
|
163 |
,$this->_html);
|
164 |
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: boldgrid, fredericktownes, maxicusc, gidomanders, bwmarkle, harryj
|
|
3 |
Tags: seo, cache, optimize, pagespeed, performance, caching, compression, maxcdn, nginx, varnish, redis, new relic, aws, amazon web services, s3, cloudfront, rackspace, cloudflare, azure, apache
|
4 |
Requires at least: 3.2
|
5 |
Tested up to: 5.4
|
6 |
-
Stable tag: 0.13.
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -275,10 +275,13 @@ Please reach out to all of these people and support their projects if you're so
|
|
275 |
|
276 |
== Changelog ==
|
277 |
|
|
|
|
|
|
|
278 |
|
279 |
= 0.13.2 =
|
280 |
-
* Fix: Dont store content of HEAD requests
|
281 |
-
* Updated informational URL on page cache static page comments
|
282 |
|
283 |
= 0.13.1 =
|
284 |
* Fixed php warnings in PgCache_ContentGrabber.php
|
3 |
Tags: seo, cache, optimize, pagespeed, performance, caching, compression, maxcdn, nginx, varnish, redis, new relic, aws, amazon web services, s3, cloudfront, rackspace, cloudflare, azure, apache
|
4 |
Requires at least: 3.2
|
5 |
Tested up to: 5.4
|
6 |
+
Stable tag: 0.13.3
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
275 |
|
276 |
== Changelog ==
|
277 |
|
278 |
+
= 0.13.3 =
|
279 |
+
* Fixed HTML minification of img elements containing embedded SVG strings
|
280 |
+
* Removed an identifying value for GDPR
|
281 |
|
282 |
= 0.13.2 =
|
283 |
+
* Fix: Dont store content of HEAD requests
|
284 |
+
* Updated informational URL on page cache static page comments
|
285 |
|
286 |
= 0.13.1 =
|
287 |
* Fixed php warnings in PgCache_ContentGrabber.php
|
w3-total-cache-api.php
CHANGED
@@ -5,7 +5,7 @@ if ( !defined( 'ABSPATH' ) ) {
|
|
5 |
}
|
6 |
|
7 |
define( 'W3TC', true );
|
8 |
-
define( 'W3TC_VERSION', '0.13.
|
9 |
define( 'W3TC_POWERED_BY', 'W3 Total Cache' );
|
10 |
define( 'W3TC_EMAIL', 'w3tc@w3-edge.com' );
|
11 |
define( 'W3TC_TEXT_DOMAIN', 'w3-total-cache' );
|
5 |
}
|
6 |
|
7 |
define( 'W3TC', true );
|
8 |
+
define( 'W3TC_VERSION', '0.13.3' );
|
9 |
define( 'W3TC_POWERED_BY', 'W3 Total Cache' );
|
10 |
define( 'W3TC_EMAIL', 'w3tc@w3-edge.com' );
|
11 |
define( 'W3TC_TEXT_DOMAIN', 'w3-total-cache' );
|
w3-total-cache.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/*
|
3 |
Plugin Name: W3 Total Cache
|
4 |
Description: The highest rated and most complete WordPress performance plugin. Dramatically improve the speed and user experience of your site. Add browser, page, object and database caching as well as minify and content delivery network (CDN) to WordPress.
|
5 |
-
Version: 0.13.
|
6 |
Plugin URI: https://www.boldgrid.com/totalcache/
|
7 |
Author: BoldGrid
|
8 |
Author URI: https://www.boldgrid.com/
|
2 |
/*
|
3 |
Plugin Name: W3 Total Cache
|
4 |
Description: The highest rated and most complete WordPress performance plugin. Dramatically improve the speed and user experience of your site. Add browser, page, object and database caching as well as minify and content delivery network (CDN) to WordPress.
|
5 |
+
Version: 0.13.3
|
6 |
Plugin URI: https://www.boldgrid.com/totalcache/
|
7 |
Author: BoldGrid
|
8 |
Author URI: https://www.boldgrid.com/
|