Plugin Directory

Changeset 3339010


Ignore:
Timestamp:
08/04/2025 01:26:56 PM (8 months ago)
Author:
apiki
Message:

Atualização da versão 1.4.0

Location:
vindi-payment-gateway/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • vindi-payment-gateway/trunk/readme.txt

    r3323666 r3339010  
    1212WC tested up to: 8.6.1
    1313Requires PHP: 5.6
    14 Stable Tag: 1.3.9
     14Stable Tag: 1.4.0
    1515License: GPLv3
    1616License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    4040
    4141== 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
    4246= 1.3.9 - 05/06/2025 =
    4347-Lançamento da versão de patch.
  • vindi-payment-gateway/trunk/src/controllers/PlansController.php

    r3323666 r3339010  
    5656  {
    5757    $product = wc_get_product($post_id);
    58     // Check if the post is product
    5958    if (!$product) {
    6059      return;
    6160    }
    6261    $post_status = $product->get_status();
    63     // Check if the post is a draft
    6462    if (str_contains($post_status, 'draft')) {
    6563      return;
     
    430428  {
    431429    $product = wc_get_product($post_id);
     430
     431    if (!$product) {
     432      return;
     433    }
    432434    // Check if the post is product
    433435    if ($product->get_type() != 'product') {
     
    472474  {
    473475    $product = wc_get_product($post_id);
     476
     477    if (!$product) {
     478      return;
     479    }
    474480    // Check if the post is product
    475481    if ($product->get_type() != 'product') {
  • vindi-payment-gateway/trunk/src/utils/DefinitionVariables.php

    r3323666 r3339010  
    11<?php
    22
    3 define('VINDI_VERSION', '1.3.9');
     3define('VINDI_VERSION', '1.4.0');
    44
    55define('VINDI_MININUM_WP_VERSION', '5.0');
  • vindi-payment-gateway/trunk/vindi.php

    r3323666 r3339010  
    77 * Author: Vindi
    88 * Author URI: https://www.vindi.com.br
    9  * Version: 1.3.9
     9 * Version: 1.4.0
    1010 * Requires at least: 4.4
    1111 * Tested up to: 6.8
Note: See TracChangeset for help on using the changeset viewer.