Changeset 3273462
- Timestamp:
- 04/15/2025 11:31:21 AM (8 months ago)
- Location:
- wp-webhooks
- Files:
-
- 6 edited
- 1 copied
-
tags/3.3.4 (copied) (copied from wp-webhooks/trunk)
-
tags/3.3.4/core/includes/integrations/edd/actions/edd_create_license.php (modified) (1 diff)
-
tags/3.3.4/readme.txt (modified) (2 diffs)
-
tags/3.3.4/wp-webhooks.php (modified) (2 diffs)
-
trunk/core/includes/integrations/edd/actions/edd_create_license.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/wp-webhooks.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-webhooks/tags/3.3.4/core/includes/integrations/edd/actions/edd_create_license.php
r3006139 r3273462 504 504 $return_args['success'] = true; 505 505 $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 : ''; 507 507 $return_args['data']['download_id'] = $download_id; 508 508 $return_args['data']['payment_id'] = $payment_id; -
wp-webhooks/tags/3.3.4/readme.txt
r3247116 r3273462 7 7 Requires at least: 4.7 8 8 Tested up to: 6.7.2 9 Stable Tag: 3.3. 39 Stable Tag: 3.3.4 10 10 License: GPLv3 11 11 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 280 280 281 281 == Changelog == 282 283 = 3.3.4: April 15, 2025 = 284 285 **Fixed issues:** 286 287 * Fixed edd_create_license action error 282 288 283 289 = 3.3.3: February 26, 2025 = -
wp-webhooks/tags/3.3.4/wp-webhooks.php
r3247116 r3273462 4 4 * Plugin URI: https://wp-webhooks.com/ 5 5 * 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. 36 * Version: 3.3.4 7 7 * Author: Ironikus 8 8 * Author URI: https://wp-webhooks.com/about/ … … 20 20 21 21 // Plugin version. 22 define( 'WPWH_VERSION', '3.3. 3' );22 define( 'WPWH_VERSION', '3.3.4' ); 23 23 24 24 // Determines if the plugin is loaded -
wp-webhooks/trunk/core/includes/integrations/edd/actions/edd_create_license.php
r3006139 r3273462 504 504 $return_args['success'] = true; 505 505 $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 : ''; 507 507 $return_args['data']['download_id'] = $download_id; 508 508 $return_args['data']['payment_id'] = $payment_id; -
wp-webhooks/trunk/readme.txt
r3247116 r3273462 7 7 Requires at least: 4.7 8 8 Tested up to: 6.7.2 9 Stable Tag: 3.3. 39 Stable Tag: 3.3.4 10 10 License: GPLv3 11 11 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 280 280 281 281 == Changelog == 282 283 = 3.3.4: April 15, 2025 = 284 285 **Fixed issues:** 286 287 * Fixed edd_create_license action error 282 288 283 289 = 3.3.3: February 26, 2025 = -
wp-webhooks/trunk/wp-webhooks.php
r3247116 r3273462 4 4 * Plugin URI: https://wp-webhooks.com/ 5 5 * 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. 36 * Version: 3.3.4 7 7 * Author: Ironikus 8 8 * Author URI: https://wp-webhooks.com/about/ … … 20 20 21 21 // Plugin version. 22 define( 'WPWH_VERSION', '3.3. 3' );22 define( 'WPWH_VERSION', '3.3.4' ); 23 23 24 24 // Determines if the plugin is loaded
Note: See TracChangeset
for help on using the changeset viewer.