Changeset 3402028
- Timestamp:
- 11/24/2025 05:48:41 PM (4 months ago)
- Location:
- fluent-crm
- Files:
-
- 6 edited
- 1 copied
-
tags/2.9.87 (copied) (copied from fluent-crm/trunk)
-
tags/2.9.87/app/Services/Funnel/Actions/SendEmailAction.php (modified) (1 diff)
-
tags/2.9.87/fluent-crm.php (modified) (2 diffs)
-
tags/2.9.87/readme.txt (modified) (2 diffs)
-
trunk/app/Services/Funnel/Actions/SendEmailAction.php (modified) (1 diff)
-
trunk/fluent-crm.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
fluent-crm/tags/2.9.87/app/Services/Funnel/Actions/SendEmailAction.php
r3399640 r3402028 206 206 $refCampaign = Arr::get($settings, 'reference_campaign'); 207 207 208 // We are making sure, this action will run only once per funnel subscriber 209 if (!$refCampaign || did_action('fluent_crm/did_run_' . $funnelSubscriberId)) { 208 if(!$refCampaign) { 210 209 FunnelHelper::changeFunnelSubSequenceStatus($funnelSubscriberId, $sequence->id, 'skipped'); 211 210 return; 212 211 } 213 212 214 do_action('fluent_crm/did_run_' . $funnelSubscriberId); 213 if($funnelMetric) { 214 // We are making sure, this action will run only once per funnel subscriber 215 if (did_action('fluent_crm/did_run_' . $funnelMetric->id)) { 216 FunnelHelper::changeFunnelSubSequenceStatus($funnelSubscriberId, $sequence->id, 'skipped'); 217 return; 218 } 219 220 do_action('fluent_crm/did_run_' . $funnelMetric->id); 221 } 222 215 223 $campaign = FunnelCampaign::find($refCampaign); 216 224 if (!$campaign) { -
fluent-crm/tags/2.9.87/fluent-crm.php
r3400178 r3402028 5 5 * Plugin URI: https://fluentcrm.com 6 6 * Description: CRM and Email Newsletter Plugin for WordPress 7 * Version: 2.9.8 67 * Version: 2.9.87 8 8 * Author: WP Email Newsletter Team - FluentCRM 9 9 * Author URI: https://fluentcrm.com … … 21 21 define('FLUENTCRM_PLUGIN_URL', plugin_dir_url(__FILE__)); 22 22 define('FLUENTCRM_PLUGIN_PATH', plugin_dir_path(__FILE__)); 23 define('FLUENTCRM_PLUGIN_VERSION', '2.9.8 6');23 define('FLUENTCRM_PLUGIN_VERSION', '2.9.87'); 24 24 define('FLUENTCRM_MIN_PRO_VERSION', '2.9.84'); 25 25 -
fluent-crm/tags/2.9.87/readme.txt
r3400178 r3402028 5 5 Tested up to: 6.8 6 6 Requires PHP: 7.3 7 Stable tag: 2.9.8 67 Stable tag: 2.9.87 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 262 262 263 263 == Changelog == 264 265 = 2.9.87 (Date: November 24, 2025) = 266 - Hotfix: Automation Custom Email Sending Issue Fixed 264 267 265 268 = 2.9.86 (Date: November 21, 2025) = -
fluent-crm/trunk/app/Services/Funnel/Actions/SendEmailAction.php
r3399640 r3402028 206 206 $refCampaign = Arr::get($settings, 'reference_campaign'); 207 207 208 // We are making sure, this action will run only once per funnel subscriber 209 if (!$refCampaign || did_action('fluent_crm/did_run_' . $funnelSubscriberId)) { 208 if(!$refCampaign) { 210 209 FunnelHelper::changeFunnelSubSequenceStatus($funnelSubscriberId, $sequence->id, 'skipped'); 211 210 return; 212 211 } 213 212 214 do_action('fluent_crm/did_run_' . $funnelSubscriberId); 213 if($funnelMetric) { 214 // We are making sure, this action will run only once per funnel subscriber 215 if (did_action('fluent_crm/did_run_' . $funnelMetric->id)) { 216 FunnelHelper::changeFunnelSubSequenceStatus($funnelSubscriberId, $sequence->id, 'skipped'); 217 return; 218 } 219 220 do_action('fluent_crm/did_run_' . $funnelMetric->id); 221 } 222 215 223 $campaign = FunnelCampaign::find($refCampaign); 216 224 if (!$campaign) { -
fluent-crm/trunk/fluent-crm.php
r3400178 r3402028 5 5 * Plugin URI: https://fluentcrm.com 6 6 * Description: CRM and Email Newsletter Plugin for WordPress 7 * Version: 2.9.8 67 * Version: 2.9.87 8 8 * Author: WP Email Newsletter Team - FluentCRM 9 9 * Author URI: https://fluentcrm.com … … 21 21 define('FLUENTCRM_PLUGIN_URL', plugin_dir_url(__FILE__)); 22 22 define('FLUENTCRM_PLUGIN_PATH', plugin_dir_path(__FILE__)); 23 define('FLUENTCRM_PLUGIN_VERSION', '2.9.8 6');23 define('FLUENTCRM_PLUGIN_VERSION', '2.9.87'); 24 24 define('FLUENTCRM_MIN_PRO_VERSION', '2.9.84'); 25 25 -
fluent-crm/trunk/readme.txt
r3400178 r3402028 5 5 Tested up to: 6.8 6 6 Requires PHP: 7.3 7 Stable tag: 2.9.8 67 Stable tag: 2.9.87 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 262 262 263 263 == Changelog == 264 265 = 2.9.87 (Date: November 24, 2025) = 266 - Hotfix: Automation Custom Email Sending Issue Fixed 264 267 265 268 = 2.9.86 (Date: November 21, 2025) =
Note: See TracChangeset
for help on using the changeset viewer.