Plugin Directory

Changeset 3402028


Ignore:
Timestamp:
11/24/2025 05:48:41 PM (4 months ago)
Author:
techjewel
Message:

releasing FluentCRM version 2.9.87

Location:
fluent-crm
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • fluent-crm/tags/2.9.87/app/Services/Funnel/Actions/SendEmailAction.php

    r3399640 r3402028  
    206206        $refCampaign = Arr::get($settings, 'reference_campaign');
    207207
    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) {
    210209            FunnelHelper::changeFunnelSubSequenceStatus($funnelSubscriberId, $sequence->id, 'skipped');
    211210            return;
    212211        }
    213212
    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
    215223        $campaign = FunnelCampaign::find($refCampaign);
    216224        if (!$campaign) {
  • fluent-crm/tags/2.9.87/fluent-crm.php

    r3400178 r3402028  
    55 * Plugin URI:   https://fluentcrm.com
    66 * Description:  CRM and Email Newsletter Plugin for WordPress
    7  * Version:      2.9.86
     7 * Version:      2.9.87
    88 * Author:       WP Email Newsletter Team - FluentCRM
    99 * Author URI:   https://fluentcrm.com
     
    2121define('FLUENTCRM_PLUGIN_URL', plugin_dir_url(__FILE__));
    2222define('FLUENTCRM_PLUGIN_PATH', plugin_dir_path(__FILE__));
    23 define('FLUENTCRM_PLUGIN_VERSION', '2.9.86');
     23define('FLUENTCRM_PLUGIN_VERSION', '2.9.87');
    2424define('FLUENTCRM_MIN_PRO_VERSION', '2.9.84');
    2525
  • fluent-crm/tags/2.9.87/readme.txt

    r3400178 r3402028  
    55Tested up to: 6.8
    66Requires PHP: 7.3
    7 Stable tag: 2.9.86
     7Stable tag: 2.9.87
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    262262
    263263== Changelog ==
     264
     265= 2.9.87 (Date: November 24, 2025) =
     266- Hotfix: Automation Custom Email Sending Issue Fixed
    264267
    265268= 2.9.86 (Date: November 21, 2025) =
  • fluent-crm/trunk/app/Services/Funnel/Actions/SendEmailAction.php

    r3399640 r3402028  
    206206        $refCampaign = Arr::get($settings, 'reference_campaign');
    207207
    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) {
    210209            FunnelHelper::changeFunnelSubSequenceStatus($funnelSubscriberId, $sequence->id, 'skipped');
    211210            return;
    212211        }
    213212
    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
    215223        $campaign = FunnelCampaign::find($refCampaign);
    216224        if (!$campaign) {
  • fluent-crm/trunk/fluent-crm.php

    r3400178 r3402028  
    55 * Plugin URI:   https://fluentcrm.com
    66 * Description:  CRM and Email Newsletter Plugin for WordPress
    7  * Version:      2.9.86
     7 * Version:      2.9.87
    88 * Author:       WP Email Newsletter Team - FluentCRM
    99 * Author URI:   https://fluentcrm.com
     
    2121define('FLUENTCRM_PLUGIN_URL', plugin_dir_url(__FILE__));
    2222define('FLUENTCRM_PLUGIN_PATH', plugin_dir_path(__FILE__));
    23 define('FLUENTCRM_PLUGIN_VERSION', '2.9.86');
     23define('FLUENTCRM_PLUGIN_VERSION', '2.9.87');
    2424define('FLUENTCRM_MIN_PRO_VERSION', '2.9.84');
    2525
  • fluent-crm/trunk/readme.txt

    r3400178 r3402028  
    55Tested up to: 6.8
    66Requires PHP: 7.3
    7 Stable tag: 2.9.86
     7Stable tag: 2.9.87
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    262262
    263263== Changelog ==
     264
     265= 2.9.87 (Date: November 24, 2025) =
     266- Hotfix: Automation Custom Email Sending Issue Fixed
    264267
    265268= 2.9.86 (Date: November 21, 2025) =
Note: See TracChangeset for help on using the changeset viewer.