diff --git a/Support_Page.php b/Support_Page.php index e0757b131..40381f817 100644 --- a/Support_Page.php +++ b/Support_Page.php @@ -49,7 +49,7 @@ static public function admin_print_scripts_w3tc_support() { 'field_value' => $w3tc_support_field_value, 'postprocess' => urlencode( urlencode( Util_Ui::admin_url( - wp_nonce_url( 'admin.php', 'w3tc' ) . '&page=w3tc_support&done' + wp_nonce_url( 'admin.php', 'w3tc' ) . '&page=w3tc_support&done=1' ) ) ) ) ); diff --git a/readme.txt b/readme.txt index e856178bc..0f193d3af 100644 --- a/readme.txt +++ b/readme.txt @@ -3,7 +3,7 @@ Contributors: boldgrid, fredericktownes, maxicusc, gidomanders, bwmarkle, harryj Tags: seo, cache, CDN, pagespeed, caching, performance, compression, optimize, cloudflare, nginx, apache, varnish, redis, aws, amazon web services, s3, cloudfront, azure Requires at least: 5.3 Tested up to: 6.2 -Stable tag: 2.3.1 +Stable tag: 2.3.2 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html @@ -285,6 +285,11 @@ Please reach out to all of these people and support their projects if you're so == Changelog == += 2.3.2 = +* Fix: Correct interpolation of a symlinked cache directory +* Fix: Memcached test using SASL authentication +* Fix: Multi-site authorization request returning to incorrect URL + = 2.3.1 = * Fix: PHP 8 compatibility: Invalid return type if Browser Cache is disabled * Fix: Added AWS SNS message classes (aws/aws-php-sns-message-validator) diff --git a/w3-total-cache-api.php b/w3-total-cache-api.php index 539aac385..9c6c9b0a7 100644 --- a/w3-total-cache-api.php +++ b/w3-total-cache-api.php @@ -12,7 +12,7 @@ } define( 'W3TC', true ); -define( 'W3TC_VERSION', '2.3.1' ); +define( 'W3TC_VERSION', '2.3.2' ); define( 'W3TC_POWERED_BY', 'W3 Total Cache' ); define( 'W3TC_EMAIL', 'w3tc@w3-edge.com' ); define( 'W3TC_TEXT_DOMAIN', 'w3-total-cache' ); @@ -73,17 +73,17 @@ if ( ! defined( 'W3TC_CACHE_DIR' ) ) { if ( false !== realpath( WP_CONTENT_DIR . '/cache' ) ) { - define( 'W3TC_CACHE_DIR', realpath( WP_CONTENT_DIR . '/cache' ) ); + define( 'W3TC_CACHE_DIR', realpath( WP_CONTENT_DIR . '/cache' ) ); } else { - define( 'W3TC_CACHE_DIR', WP_CONTENT_DIR . '/cache' ); + define( 'W3TC_CACHE_DIR', WP_CONTENT_DIR . '/cache' ); } } if ( ! defined( 'W3TC_CONFIG_DIR' ) ) { if ( false !== realpath( WP_CONTENT_DIR . '/w3tc-config' ) ) { - define( 'W3TC_CONFIG_DIR', realpath( WP_CONTENT_DIR . '/w3tc-config' ) ); + define( 'W3TC_CONFIG_DIR', realpath( WP_CONTENT_DIR . '/w3tc-config' ) ); } else { - define( 'W3TC_CONFIG_DIR', WP_CONTENT_DIR . '/w3tc-config' ); + define( 'W3TC_CONFIG_DIR', WP_CONTENT_DIR . '/w3tc-config' ); } } diff --git a/w3-total-cache.php b/w3-total-cache.php index a032bce5e..3962562cf 100644 --- a/w3-total-cache.php +++ b/w3-total-cache.php @@ -3,7 +3,7 @@ * Plugin Name: W3 Total Cache * Plugin URI: https://www.boldgrid.com/totalcache/ * 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. - * Version: 2.3.1 + * Version: 2.3.2 * Requires at least: 5.3 * Requires PHP: 5.6 * Author: BoldGrid