diff --git a/languages/uncanny-automator.pot b/languages/uncanny-automator.pot index 05537ca0..f6dd3b00 100644 --- a/languages/uncanny-automator.pot +++ b/languages/uncanny-automator.pot @@ -2,14 +2,14 @@ # This file is distributed under the same license as the Uncanny Automator plugin. msgid "" msgstr "" -"Project-Id-Version: Uncanny Automator 3.0.1\n" +"Project-Id-Version: Uncanny Automator 3.0.2\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/uncanny-automator\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2021-05-20T21:16:17+00:00\n" +"POT-Creation-Date: 2021-05-21T16:11:12+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.4.0\n" "X-Domain: uncanny-automator\n" diff --git a/readme.txt b/readme.txt index 23a721b4..88126ab0 100644 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Tags: automation, zapier, google sheets, mailchimp, learndash Requires at least: 5.0 Tested up to: 5.7.2 Requires PHP: 7.2 -Stable tag: 3.0.1 +Stable tag: 3.0.2 License: GPLv3 License URI: https://www.gnu.org/licenses/gpl-3.0.html @@ -173,6 +173,12 @@ We're a Toronto-based WordPress company specializing in elearning and automation == Changelog == += 3.0.2 [2021-05-21] = + +**Fixed:** + +* WooCommerce Payment Gateways: Compatibility issue on some server configurations + = 3.0.1 [2021-05-20] = **Fixed:** @@ -459,6 +465,9 @@ We're a Toronto-based WordPress company specializing in elearning and automation == Upgrade Notice == += 3.0.2 = +Uncanny Automator 3.0 is a major release. We recommend taking a backup and testing in a Staging environment before updating your Live site. + = 3.0.1 = Uncanny Automator 3.0 is a major release. We recommend taking a backup and testing in a Staging environment before updating your Live site. diff --git a/src/core/lib/helpers/class-automator-recipe-helpers.php b/src/core/lib/helpers/class-automator-recipe-helpers.php index 22f722ea..c8e0a09f 100644 --- a/src/core/lib/helpers/class-automator-recipe-helpers.php +++ b/src/core/lib/helpers/class-automator-recipe-helpers.php @@ -859,7 +859,7 @@ public function maybe_load_trigger_options( $class = '' ) { } } - return apply_filters( 'automator_do_load_options', true, $class ); + return apply_filters( 'automator_do_load_options', false, $class ); } /** diff --git a/uncanny-automator.php b/uncanny-automator.php index b9517220..9c80772f 100644 --- a/uncanny-automator.php +++ b/uncanny-automator.php @@ -9,7 +9,7 @@ * Domain Path: /languages * License: GPLv3 * License URI: https://www.gnu.org/licenses/gpl-3.0.html - * Version: 3.0.1 + * Version: 3.0.2 * Requires at least: 5.0 * Requires PHP: 7.2 */ @@ -21,7 +21,7 @@ /* * Specify Automator version. */ - define( 'AUTOMATOR_PLUGIN_VERSION', '3.0.1' ); + define( 'AUTOMATOR_PLUGIN_VERSION', '3.0.2' ); } if ( ! defined( 'AUTOMATOR_BASE_FILE' ) ) {