Plugin Directory

Changeset 3247152


Ignore:
Timestamp:
02/26/2025 01:56:04 PM (13 months ago)
Author:
itpathsolutions
Message:

0.0.6

*Release Date 26 February 2025*

  • Fix - Get request will cover header arguments
Location:
connect-wpform-to-any-api
Files:
74 added
3 edited

Legend:

Unmodified
Added
Removed
  • connect-wpform-to-any-api/trunk/README.txt

    r3245421 r3247152  
    55Tested up to: 6.7
    66Requires PHP: 7.4
    7 Stable tag: 0.0.5
     7Stable tag: 0.0.6
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    9191== Changelog ==
    9292
     93= 0.0.6 =
     94
     95*Release Date 26 February 2025*
     96
     97* Fix - Get request will cover header arguments
     98
    9399= 0.0.5 =
    94100
  • connect-wpform-to-any-api/trunk/admin/class-wpform-to-any-api-admin.php

    r3243804 r3247152  
    508508                'filename'    => null
    509509            );
    510 
     510            if(isset($header_request) && $header_request !== ''){
     511                $args['headers'] = $header_request;
     512            }
    511513            if($input_type == 'params'){
    512514                $data_string = http_build_query($data);
  • connect-wpform-to-any-api/trunk/wpform-to-any-api.php

    r3245421 r3247152  
    1717 * Plugin URI:        https://wordpress.org/plugins/connect-wpform-to-any-api
    1818 * Description:       Send WPForms Lead/Data to Any CRM or Third Party APIs
    19  * Version:           0.0.5
     19 * Version:           0.0.6
    2020 * Author:            IT Path Solutions
    2121 * Author URI:        https://www.itpathsolutions.com/
     
    3636 * Rename this for your plugin and update it as you release new versions.
    3737 */
    38 define( 'WPFORM_TO_ANY_API_VERSION', '0.0.5' );
     38define( 'WPFORM_TO_ANY_API_VERSION', '0.0.6' );
    3939
    4040/**
Note: See TracChangeset for help on using the changeset viewer.