Plugin Directory

Changeset 3425471


Ignore:
Timestamp:
12/22/2025 03:36:14 PM (3 months ago)
Author:
closemarketing
Message:

Update to version 4.2.1 from GitHub

Location:
formscrm
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • formscrm/tags/4.2.1/formscrm.php

    r3424189 r3425471  
    44 * Plugin URI : https://close.technology/wordpress-plugins/formscrm/
    55 * Description: Connects Forms with CRM, ERP and Email Marketing.
    6  * Version: 4.2.0
     6 * Version: 4.2.1
    77 * Author: CloseTechnology
    88 * Author URI: https://close.technology
     
    2424defined( 'ABSPATH' ) || die( 'No script kiddies please!' );
    2525
    26 define( 'FORMSCRM_VERSION', '4.2.0' );
     26define( 'FORMSCRM_VERSION', '4.2.1' );
    2727define( 'FORMSCRM_PLUGIN', __FILE__ );
    2828define( 'FORMSCRM_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
  • formscrm/tags/4.2.1/includes/formscrm-library/helpers-functions.php

    r3424189 r3425471  
    405405            return;
    406406        }
    407         $module   = isset( $response['module'] ) ? $response['module'] : '';
    408         $ids      = isset( $response['id'] ) ? $response['id'] : '';
    409         $ids      = explode( '|', $ids );
    410         $entry_id = end( $ids );
    411         $entry_id = str_replace( 'Deal ', '', $entry_id );
     407        $module    = isset( $response['module'] ) ? $response['module'] : '';
     408        $ids       = isset( $response['id'] ) ? $response['id'] : '';
     409        $ids       = explode( '|', $ids );
     410        $entry_raw = end( $ids );
     411        $entry_id  = preg_replace( '/\D/', '', $entry_raw );
    412412
    413413        $body     = array(
     
    417417            ),
    418418            'data' => array(
    419                 'id' => $entry_id,
     419                'id' => (int) $entry_id,
    420420            ),
    421421        );
  • formscrm/tags/4.2.1/readme.txt

    r3424189 r3425471  
    55Requires at least: 5.5
    66Tested up to: 6.9
    7 Stable tag: 4.2.0
    8 Version: 4.2.0
     7Stable tag: 4.2.1
     8Version: 4.2.1
    99License: GPL2
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    131131
    132132== Changelog ==
     133= 4.2.1 =
     134*  Hotfix: Error not sending correctly entry id in webhook.
     135
    133136= 4.2.0 =
    134137*  Enhanced: New design for the settings page.
  • formscrm/trunk/formscrm.php

    r3424189 r3425471  
    44 * Plugin URI : https://close.technology/wordpress-plugins/formscrm/
    55 * Description: Connects Forms with CRM, ERP and Email Marketing.
    6  * Version: 4.2.0
     6 * Version: 4.2.1
    77 * Author: CloseTechnology
    88 * Author URI: https://close.technology
     
    2424defined( 'ABSPATH' ) || die( 'No script kiddies please!' );
    2525
    26 define( 'FORMSCRM_VERSION', '4.2.0' );
     26define( 'FORMSCRM_VERSION', '4.2.1' );
    2727define( 'FORMSCRM_PLUGIN', __FILE__ );
    2828define( 'FORMSCRM_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
  • formscrm/trunk/includes/formscrm-library/helpers-functions.php

    r3424189 r3425471  
    405405            return;
    406406        }
    407         $module   = isset( $response['module'] ) ? $response['module'] : '';
    408         $ids      = isset( $response['id'] ) ? $response['id'] : '';
    409         $ids      = explode( '|', $ids );
    410         $entry_id = end( $ids );
    411         $entry_id = str_replace( 'Deal ', '', $entry_id );
     407        $module    = isset( $response['module'] ) ? $response['module'] : '';
     408        $ids       = isset( $response['id'] ) ? $response['id'] : '';
     409        $ids       = explode( '|', $ids );
     410        $entry_raw = end( $ids );
     411        $entry_id  = preg_replace( '/\D/', '', $entry_raw );
    412412
    413413        $body     = array(
     
    417417            ),
    418418            'data' => array(
    419                 'id' => $entry_id,
     419                'id' => (int) $entry_id,
    420420            ),
    421421        );
  • formscrm/trunk/readme.txt

    r3424189 r3425471  
    55Requires at least: 5.5
    66Tested up to: 6.9
    7 Stable tag: 4.2.0
    8 Version: 4.2.0
     7Stable tag: 4.2.1
     8Version: 4.2.1
    99License: GPL2
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    131131
    132132== Changelog ==
     133= 4.2.1 =
     134*  Hotfix: Error not sending correctly entry id in webhook.
     135
    133136= 4.2.0 =
    134137*  Enhanced: New design for the settings page.
Note: See TracChangeset for help on using the changeset viewer.