Changeset 3425471
- Timestamp:
- 12/22/2025 03:36:14 PM (3 months ago)
- Location:
- formscrm
- Files:
-
- 6 edited
- 1 copied
-
tags/4.2.1 (copied) (copied from formscrm/trunk)
-
tags/4.2.1/formscrm.php (modified) (2 diffs)
-
tags/4.2.1/includes/formscrm-library/helpers-functions.php (modified) (2 diffs)
-
tags/4.2.1/readme.txt (modified) (2 diffs)
-
trunk/formscrm.php (modified) (2 diffs)
-
trunk/includes/formscrm-library/helpers-functions.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
formscrm/tags/4.2.1/formscrm.php
r3424189 r3425471 4 4 * Plugin URI : https://close.technology/wordpress-plugins/formscrm/ 5 5 * Description: Connects Forms with CRM, ERP and Email Marketing. 6 * Version: 4.2. 06 * Version: 4.2.1 7 7 * Author: CloseTechnology 8 8 * Author URI: https://close.technology … … 24 24 defined( 'ABSPATH' ) || die( 'No script kiddies please!' ); 25 25 26 define( 'FORMSCRM_VERSION', '4.2. 0' );26 define( 'FORMSCRM_VERSION', '4.2.1' ); 27 27 define( 'FORMSCRM_PLUGIN', __FILE__ ); 28 28 define( 'FORMSCRM_PLUGIN_URL', plugin_dir_url( __FILE__ ) ); -
formscrm/tags/4.2.1/includes/formscrm-library/helpers-functions.php
r3424189 r3425471 405 405 return; 406 406 } 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 ); 412 412 413 413 $body = array( … … 417 417 ), 418 418 'data' => array( 419 'id' => $entry_id,419 'id' => (int) $entry_id, 420 420 ), 421 421 ); -
formscrm/tags/4.2.1/readme.txt
r3424189 r3425471 5 5 Requires at least: 5.5 6 6 Tested up to: 6.9 7 Stable tag: 4.2. 08 Version: 4.2. 07 Stable tag: 4.2.1 8 Version: 4.2.1 9 9 License: GPL2 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 131 131 132 132 == Changelog == 133 = 4.2.1 = 134 * Hotfix: Error not sending correctly entry id in webhook. 135 133 136 = 4.2.0 = 134 137 * Enhanced: New design for the settings page. -
formscrm/trunk/formscrm.php
r3424189 r3425471 4 4 * Plugin URI : https://close.technology/wordpress-plugins/formscrm/ 5 5 * Description: Connects Forms with CRM, ERP and Email Marketing. 6 * Version: 4.2. 06 * Version: 4.2.1 7 7 * Author: CloseTechnology 8 8 * Author URI: https://close.technology … … 24 24 defined( 'ABSPATH' ) || die( 'No script kiddies please!' ); 25 25 26 define( 'FORMSCRM_VERSION', '4.2. 0' );26 define( 'FORMSCRM_VERSION', '4.2.1' ); 27 27 define( 'FORMSCRM_PLUGIN', __FILE__ ); 28 28 define( 'FORMSCRM_PLUGIN_URL', plugin_dir_url( __FILE__ ) ); -
formscrm/trunk/includes/formscrm-library/helpers-functions.php
r3424189 r3425471 405 405 return; 406 406 } 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 ); 412 412 413 413 $body = array( … … 417 417 ), 418 418 'data' => array( 419 'id' => $entry_id,419 'id' => (int) $entry_id, 420 420 ), 421 421 ); -
formscrm/trunk/readme.txt
r3424189 r3425471 5 5 Requires at least: 5.5 6 6 Tested up to: 6.9 7 Stable tag: 4.2. 08 Version: 4.2. 07 Stable tag: 4.2.1 8 Version: 4.2.1 9 9 License: GPL2 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 131 131 132 132 == Changelog == 133 = 4.2.1 = 134 * Hotfix: Error not sending correctly entry id in webhook. 135 133 136 = 4.2.0 = 134 137 * Enhanced: New design for the settings page.
Note: See TracChangeset
for help on using the changeset viewer.