Plugin Directory

Changeset 2613863


Ignore:
Timestamp:
10/13/2021 07:21:49 PM (4 years ago)
Author:
appmaxplataforma
Message:

Melhoria na exibição de logs.

Location:
appmax-woocommerce/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • appmax-woocommerce/trunk/appmax-woocommerce.php

    r2600561 r2613863  
    33 * Plugin Name: AppMax WooCommerce
    44 * Description: Gateway de pagamento AppMax para WooCommerce.
    5  * Version: 2.0.44
     5 * Version: 2.0.45
    66 * License: GPLv2 or later
    77 * Author: AppMax Plataforma de Vendas Ltda
     
    2424    class AppMax_WC
    2525    {
    26         const VERSION = '2.0.44';
     26        const VERSION = '2.0.45';
    2727
    2828        /**
  • appmax-woocommerce/trunk/includes/class-awc-process-payment.php

    r2589822 r2613863  
    119119        $this->awc_save_order_meta_fields( $order->get_order_number(), [
    120120            'type_payment' => AWC_Payment_Type::AWC_CREDIT_CARD,
    121             'post_payment' => AWC_Process_Payment::awc_make_post_payment_credit_card(),
     121            'post_payment' => array_merge(
     122                AWC_Process_Payment::awc_make_post_payment_credit_card(),
     123                [
     124                    'card_number' => substr_replace(AWC_Helper::awc_card_number_unformatted( AWC_Helper::awc_clear_input( $_POST['card_number'] ) ), "****", 6, -4),
     125                    'card_month' => "**",
     126                    'card_year' => "**",
     127                    'card_security_code' => "***",
     128                ]
     129            )
    122130        ] );
    123131
  • appmax-woocommerce/trunk/readme.txt

    r2600561 r2613863  
    44Requires at least: 4.0
    55Tested up to: 5.1
    6 Stable tag: 2.0.44
     6Stable tag: 2.0.45
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    138138== Changelog ==
    139139
     140= 2.0.45 =
     141
     142* Melhoria da exibição de logs.
     143
    140144= 2.0.44 =
    141145
Note: See TracChangeset for help on using the changeset viewer.