Skip to content

Commit

Permalink
Release 2.3.2 (#688)
Browse files Browse the repository at this point in the history
* Bump version to 2.3.2
* Fix support submit response URI QSA
  • Loading branch information
cssjoe authored May 9, 2023
1 parent 5704291 commit 2b5e68f
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Support_Page.php
Original file line number Diff line number Diff line change
Expand Up @@ -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'
) ) )
)
);
Expand Down
7 changes: 6 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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)
Expand Down
10 changes: 5 additions & 5 deletions w3-total-cache-api.php
Original file line number Diff line number Diff line change
Expand Up @@ -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', '[email protected]' );
define( 'W3TC_TEXT_DOMAIN', 'w3-total-cache' );
Expand Down Expand Up @@ -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' );
}
}

Expand Down
2 changes: 1 addition & 1 deletion w3-total-cache.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 2b5e68f

Please sign in to comment.