Changeset 2613863
- Timestamp:
- 10/13/2021 07:21:49 PM (4 years ago)
- Location:
- appmax-woocommerce/trunk
- Files:
-
- 3 edited
-
appmax-woocommerce.php (modified) (2 diffs)
-
includes/class-awc-process-payment.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
appmax-woocommerce/trunk/appmax-woocommerce.php
r2600561 r2613863 3 3 * Plugin Name: AppMax WooCommerce 4 4 * Description: Gateway de pagamento AppMax para WooCommerce. 5 * Version: 2.0.4 45 * Version: 2.0.45 6 6 * License: GPLv2 or later 7 7 * Author: AppMax Plataforma de Vendas Ltda … … 24 24 class AppMax_WC 25 25 { 26 const VERSION = '2.0.4 4';26 const VERSION = '2.0.45'; 27 27 28 28 /** -
appmax-woocommerce/trunk/includes/class-awc-process-payment.php
r2589822 r2613863 119 119 $this->awc_save_order_meta_fields( $order->get_order_number(), [ 120 120 '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 ) 122 130 ] ); 123 131 -
appmax-woocommerce/trunk/readme.txt
r2600561 r2613863 4 4 Requires at least: 4.0 5 5 Tested up to: 5.1 6 Stable tag: 2.0.4 46 Stable tag: 2.0.45 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 138 138 == Changelog == 139 139 140 = 2.0.45 = 141 142 * Melhoria da exibição de logs. 143 140 144 = 2.0.44 = 141 145
Note: See TracChangeset
for help on using the changeset viewer.