From dd921b1bd86a91de87ec3f0a378e8ba814cf7772 Mon Sep 17 00:00:00 2001 From: Sergiy Zakharchenko Date: Wed, 8 May 2024 19:08:41 +0100 Subject: [PATCH 1/2] Fixed the plugin activation issue in WordPress 6.5.3 --- php/classes/controllers/class-onboarding-controller.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/php/classes/controllers/class-onboarding-controller.php b/php/classes/controllers/class-onboarding-controller.php index 3e35c0b0..390d5a3c 100644 --- a/php/classes/controllers/class-onboarding-controller.php +++ b/php/classes/controllers/class-onboarding-controller.php @@ -72,7 +72,7 @@ public function fix_deprecated_warning() { } public function maybe_start_onboarding( $plugin ) { - if ( $plugin !== plugin_basename( $this->file ) ) { + if ( $plugin !== plugin_basename( $this->file ) || wp_doing_ajax() ) { return; } if ( ! ssp_onboarded() ) { From befed62685467e0ab871288c9ca013658160d5bf Mon Sep 17 00:00:00 2001 From: Sergiy Zakharchenko Date: Wed, 8 May 2024 19:15:34 +0100 Subject: [PATCH 2/2] Version 3.3.1 --- package.json | 2 +- readme.txt | 6 +++++- seriously-simple-podcasting.php | 4 ++-- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index 37fb77d0..ce82d591 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "seriously-simple-podcasting", - "version": "3.3.0", + "version": "3.3.1", "main": "build/index.js", "author": "CastosHQ", "devDependencies": { diff --git a/readme.txt b/readme.txt index e410ba33..5c5f5de2 100644 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Tags: podcast, audio, itunes, podcasting, playlist Requires at least: 5.3 Tested up to: 6.5 Requires PHP: 7.4 -Stable tag: 3.3.0 +Stable tag: 3.3.1 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html @@ -165,6 +165,10 @@ You can find complete user and developer documentation (along with the FAQs) on == Changelog == += 3.3.1 = +2024-05-08 +[FIX] Fixed the plugin activation issue in WordPress 6.5.3 + = 3.3.0 = 2024-05-08 [UPDATE] Show the "Onboarding wizard" menu item for new users diff --git a/seriously-simple-podcasting.php b/seriously-simple-podcasting.php index 855a2148..653ac977 100644 --- a/seriously-simple-podcasting.php +++ b/seriously-simple-podcasting.php @@ -1,7 +1,7 @@