Changeset 3122840
- Timestamp:
- 07/22/2024 01:05:31 AM (21 months ago)
- Location:
- bold-pay/trunk
- Files:
-
- 3 edited
-
index.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
-
src/boldpay.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
bold-pay/trunk/index.php
r3085367 r3122840 4 4 * Plugin URI: https://boldpay.cc/login 5 5 * Description: BOLD.Pay is a cloud-based multi-channel payment access plugin for WooCommerce. 6 * Version: 1.5. 66 * Version: 1.5.7 7 7 * Author: MACROKIOSK 8 8 * Author URI: https://www.macrokiosk.com/ 9 9 * WooCommerce requires at least: 2.6.0 10 * WooCommerce tested up to: 8.8.310 * WooCommerce tested up to: 9.0.2 11 11 **/ 12 12 -
bold-pay/trunk/readme.txt
r3085367 r3122840 2 2 Tags: Payment Gateway, Online Banking, e-wallet, payment request, credit card, grabpay, boost, boostpay, touch n go, touchngo, secured, debit card, card, direct carrier billing, multi channel payment, payment plugin, free, MACROKIOSK 3 3 Requires at least: 5.2.1 4 Tested up to: 6.5. 34 Tested up to: 6.5.5 5 5 WooCommerce requires at least: 2.6.0 6 WooCommerce tested up to: 8.8.37 Stable tag: 1.5. 66 WooCommerce tested up to: 9.0.2 7 Stable tag: 1.5.7 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html -
bold-pay/trunk/src/boldpay.php
r2857526 r3122840 287 287 288 288 $order->update_status( 'failed' ); 289 $order->add_order_note( 'Payment failed made through BOLD.Pay. Transaction ID is ' . sanitize_text_field( $_REQUEST['TransactionID'] )); 289 if ( isset( $_REQUEST['Reason'] ) ){ 290 $order->add_order_note( sanitize_text_field( $_REQUEST['Reason'] ) . '. Transaction ID is ' . sanitize_text_field( $_REQUEST['TransactionID'] )); 291 } 292 else{ 293 $order->add_order_note( 'Payment failed made through BOLD.Pay. Transaction ID is ' . sanitize_text_field( $_REQUEST['TransactionID'] )); 294 } 290 295 291 296 if ( $is_callback ) {
Note: See TracChangeset
for help on using the changeset viewer.