Changeset 3339010
- Timestamp:
- 08/04/2025 01:26:56 PM (8 months ago)
- Location:
- vindi-payment-gateway/trunk
- Files:
-
- 4 edited
-
readme.txt (modified) (2 diffs)
-
src/controllers/PlansController.php (modified) (3 diffs)
-
src/utils/DefinitionVariables.php (modified) (1 diff)
-
vindi.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
vindi-payment-gateway/trunk/readme.txt
r3323666 r3339010 12 12 WC tested up to: 8.6.1 13 13 Requires PHP: 5.6 14 Stable Tag: 1. 3.914 Stable Tag: 1.4.0 15 15 License: GPLv3 16 16 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 40 40 41 41 == Changelog == 42 = 1.4.0 - 31/07/2025 = 43 -Lançamento da versão de patch. 44 - **Correção:** fatal error ao excluir posts. 45 42 46 = 1.3.9 - 05/06/2025 = 43 47 -Lançamento da versão de patch. -
vindi-payment-gateway/trunk/src/controllers/PlansController.php
r3323666 r3339010 56 56 { 57 57 $product = wc_get_product($post_id); 58 // Check if the post is product59 58 if (!$product) { 60 59 return; 61 60 } 62 61 $post_status = $product->get_status(); 63 // Check if the post is a draft64 62 if (str_contains($post_status, 'draft')) { 65 63 return; … … 430 428 { 431 429 $product = wc_get_product($post_id); 430 431 if (!$product) { 432 return; 433 } 432 434 // Check if the post is product 433 435 if ($product->get_type() != 'product') { … … 472 474 { 473 475 $product = wc_get_product($post_id); 476 477 if (!$product) { 478 return; 479 } 474 480 // Check if the post is product 475 481 if ($product->get_type() != 'product') { -
vindi-payment-gateway/trunk/src/utils/DefinitionVariables.php
r3323666 r3339010 1 1 <?php 2 2 3 define('VINDI_VERSION', '1. 3.9');3 define('VINDI_VERSION', '1.4.0'); 4 4 5 5 define('VINDI_MININUM_WP_VERSION', '5.0'); -
vindi-payment-gateway/trunk/vindi.php
r3323666 r3339010 7 7 * Author: Vindi 8 8 * Author URI: https://www.vindi.com.br 9 * Version: 1. 3.99 * Version: 1.4.0 10 10 * Requires at least: 4.4 11 11 * Tested up to: 6.8
Note: See TracChangeset
for help on using the changeset viewer.