Full Site Editing - Version 3.49479

Version Description

Download this release

Release Info

Developer wojtekn
Plugin Icon wp plugin Full Site Editing
Version 3.49479
Comparing to
See all releases

Code changes from version 3.49470 to 3.49479

build_meta.txt CHANGED
@@ -1,3 +1,3 @@
1
- commit_hash=335d233bff622602d808116430d7ad4807736b79
2
- commit_url=https://github.com/Automattic/wp-calypso/commit/335d233bff622602d808116430d7ad4807736b79
3
- build_number=3.49470
1
+ commit_hash=2c8172b7bbfd52fbdccfe4a3957837c497c6e66c
2
+ commit_url=https://github.com/Automattic/wp-calypso/commit/2c8172b7bbfd52fbdccfe4a3957837c497c6e66c
3
+ build_number=3.49479
coming-soon/coming-soon.php CHANGED
@@ -45,9 +45,9 @@ function should_show_coming_soon_page() {
45
  */
46
  function get_share_code() {
47
  if ( isset( $_GET['share'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended
48
- return $_GET['share']; // phpcs:ignore WordPress.Security.NonceVerification.Recommended
49
  } elseif ( isset( $_COOKIE['wp_share_code'] ) ) {
50
- return $_COOKIE['wp_share_code'];
51
  }
52
  return '';
53
  }
45
  */
46
  function get_share_code() {
47
  if ( isset( $_GET['share'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended
48
+ return sanitize_key( wp_unslash( $_GET['share'] ) ); // phpcs:ignore WordPress.Security.NonceVerification.Recommended
49
  } elseif ( isset( $_COOKIE['wp_share_code'] ) ) {
50
+ return sanitize_key( wp_unslash( $_COOKIE['wp_share_code'] ) );
51
  }
52
  return '';
53
  }
full-site-editing-plugin.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Plugin Name: WordPress.com Editing Toolkit
4
  * Description: Enhances your page creation workflow within the Block Editor.
5
- * Version: 3.49470
6
  * Author: Automattic
7
  * Author URI: https://automattic.com/wordpress-plugins/
8
  * License: GPLv2 or later
@@ -42,7 +42,7 @@ namespace A8C\FSE;
42
  *
43
  * @var string
44
  */
45
- define( 'A8C_ETK_PLUGIN_VERSION', '3.49470' );
46
 
47
  // Always include these helper files for dotcom FSE.
48
  require_once __DIR__ . '/dotcom-fse/helpers.php';
2
  /**
3
  * Plugin Name: WordPress.com Editing Toolkit
4
  * Description: Enhances your page creation workflow within the Block Editor.
5
+ * Version: 3.49479
6
  * Author: Automattic
7
  * Author URI: https://automattic.com/wordpress-plugins/
8
  * License: GPLv2 or later
42
  *
43
  * @var string
44
  */
45
+ define( 'A8C_ETK_PLUGIN_VERSION', '3.49479' );
46
 
47
  // Always include these helper files for dotcom FSE.
48
  require_once __DIR__ . '/dotcom-fse/helpers.php';
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: automattic
3
  Tags: block, blocks, editor, gutenberg, page
4
  Requires at least: 5.5
5
  Tested up to: 6.0
6
- Stable tag: 3.49470
7
  Requires PHP: 5.6.20
8
  License: GPLv2 or later
9
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
3
  Tags: block, blocks, editor, gutenberg, page
4
  Requires at least: 5.5
5
  Tested up to: 6.0
6
+ Stable tag: 3.49479
7
  Requires PHP: 5.6.20
8
  License: GPLv2 or later
9
  License URI: https://www.gnu.org/licenses/gpl-2.0.html