Plugin Directory

Changeset 3273462


Ignore:
Timestamp:
04/15/2025 11:31:21 AM (8 months ago)
Author:
madalin.ungureanu
Message:

tagging version 3.3.4

Location:
wp-webhooks
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • wp-webhooks/tags/3.3.4/core/includes/integrations/edd/actions/edd_create_license.php

    r3006139 r3273462  
    504504                $return_args['success'] = true;
    505505                $return_args['data']['license_id'] = $license->ID;
    506                 $return_args['data']['license_key'] = $license->get_license_key();
     506                $return_args['data']['license_key'] = isset( $license->license_key ) ? $license->license_key : '';
    507507                $return_args['data']['download_id'] = $download_id;
    508508                $return_args['data']['payment_id'] = $payment_id;
  • wp-webhooks/tags/3.3.4/readme.txt

    r3247116 r3273462  
    77Requires at least: 4.7
    88Tested up to: 6.7.2
    9 Stable Tag: 3.3.3
     9Stable Tag: 3.3.4
    1010License: GPLv3
    1111License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    280280
    281281== Changelog ==
     282
     283= 3.3.4: April 15, 2025 =
     284
     285**Fixed issues:**
     286
     287* Fixed edd_create_license action error
    282288
    283289= 3.3.3: February 26, 2025 =
  • wp-webhooks/tags/3.3.4/wp-webhooks.php

    r3247116 r3273462  
    44 * Plugin URI: https://wp-webhooks.com/
    55 * Description: Put your website on autopilot by using webhooks to get rid of manual tasks and focus on what's really important for your business.
    6  * Version: 3.3.3
     6 * Version: 3.3.4
    77 * Author: Ironikus
    88 * Author URI: https://wp-webhooks.com/about/
     
    2020
    2121// Plugin version.
    22 define( 'WPWH_VERSION',        '3.3.3' );
     22define( 'WPWH_VERSION',        '3.3.4' );
    2323
    2424// Determines if the plugin is loaded
  • wp-webhooks/trunk/core/includes/integrations/edd/actions/edd_create_license.php

    r3006139 r3273462  
    504504                $return_args['success'] = true;
    505505                $return_args['data']['license_id'] = $license->ID;
    506                 $return_args['data']['license_key'] = $license->get_license_key();
     506                $return_args['data']['license_key'] = isset( $license->license_key ) ? $license->license_key : '';
    507507                $return_args['data']['download_id'] = $download_id;
    508508                $return_args['data']['payment_id'] = $payment_id;
  • wp-webhooks/trunk/readme.txt

    r3247116 r3273462  
    77Requires at least: 4.7
    88Tested up to: 6.7.2
    9 Stable Tag: 3.3.3
     9Stable Tag: 3.3.4
    1010License: GPLv3
    1111License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    280280
    281281== Changelog ==
     282
     283= 3.3.4: April 15, 2025 =
     284
     285**Fixed issues:**
     286
     287* Fixed edd_create_license action error
    282288
    283289= 3.3.3: February 26, 2025 =
  • wp-webhooks/trunk/wp-webhooks.php

    r3247116 r3273462  
    44 * Plugin URI: https://wp-webhooks.com/
    55 * Description: Put your website on autopilot by using webhooks to get rid of manual tasks and focus on what's really important for your business.
    6  * Version: 3.3.3
     6 * Version: 3.3.4
    77 * Author: Ironikus
    88 * Author URI: https://wp-webhooks.com/about/
     
    2020
    2121// Plugin version.
    22 define( 'WPWH_VERSION',        '3.3.3' );
     22define( 'WPWH_VERSION',        '3.3.4' );
    2323
    2424// Determines if the plugin is loaded
Note: See TracChangeset for help on using the changeset viewer.