Changeset 3444078
- Timestamp:
- 01/21/2026 12:41:00 PM (7 weeks ago)
- Location:
- float-gateway/trunk
- Files:
-
- 4 edited
-
changelog.txt (modified) (1 diff)
-
index.php (modified) (3 diffs)
-
readme.md (modified) (1 diff)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
float-gateway/trunk/changelog.txt
r3344755 r3444078 52 52 1.1.6 - Update to PDP display 53 53 1.1.7 - Updates to checkout handling 54 1.1.8 - Updates to network failure handling 55 1.1.9 - Fix to floating cart widgets for certain themes 56 1.1.10 - Security update -
float-gateway/trunk/index.php
r3416714 r3444078 6 6 * Author: © FLOAT TECHNOLOGIES (PTY) LTD 7 7 * Author URI: http://float.co.za 8 * Version: 1.1. 98 * Version: 1.1.10 9 9 */ 10 10 … … 20 20 21 21 22 define('WC_FLOAT_VER', '1.1. 9');22 define('WC_FLOAT_VER', '1.1.10'); 23 23 define('WC_FLOAT_PLUGIN_PATH', untrailingslashit(plugin_dir_path(__FILE__))); 24 24 … … 476 476 $json = []; 477 477 if ($nonce_verify_1 !== $nonce_verify_2) { 478 if (isset($_POST['order_id'])) {479 $order = new \WC_Order(sanitize_key($_POST['order_id']));480 if ($order) {481 $order->update_status('failed', sprintf(__('%s %s failed to verify transaction from Float', 'float-payment-gateway'), get_woocommerce_currency(), $order->get_total()));482 wp_send_json(['redirect' => $order->get_checkout_payment_url(false)]);483 }484 }485 478 wp_send_json(['redirect' => WC()->cart->get_checkout_url()], 200); 486 479 } -
float-gateway/trunk/readme.md
r3416714 r3444078 83 83 1.1.8 - Updates to network failure handling 84 84 1.1.9 - Fix to floating cart widgets for certain themes 85 1.1.10 - Security update -
float-gateway/trunk/readme.txt
r3416714 r3444078 83 83 1.1.8 - Updates to network failure handling 84 84 1.1.9 - Fix to floating cart widgets for certain themes 85 1.1.10 - Security update
Note: See TracChangeset
for help on using the changeset viewer.