Changeset 1291312
- Timestamp:
- 11/21/2015 04:42:16 AM (10 years ago)
- Location:
- woocommerce-fat-zebra-gateway/trunk
- Files:
-
- 2 edited
-
class-wc-fatzebra.php (modified) (4 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
woocommerce-fat-zebra-gateway/trunk/class-wc-fatzebra.php
r1291310 r1291312 5 5 Plugin URI: https://www.fatzebra.com.au/support/supported-carts 6 6 Description: Extends WooCommerce with Fat Zebra payment gateway along with WooCommerce subscriptions support. 7 Version: 1.5. 37 Version: 1.5.4 8 8 Author: Fat Zebra 9 9 Author URI: https://www.fatzebra.com.au … … 288 288 } 289 289 290 $this->params["reference"] = "FZT-" .(string)$order_id;290 $this->params["reference"] = (string)$order_id; 291 291 $test_mode = $this->settings['test_mode'] == 'yes'; 292 292 $this->params["test"] = $test_mode; … … 477 477 $this->params["amount"] = (int)($amount_to_charge * 100); 478 478 $this->params["test"] = $test_mode; 479 $this->params["reference"] = "FZT-" .$order->id . "-" . date("dmY"); // Reference for order ID 123 will become 123-01022012479 $this->params["reference"] = $order->id . "-" . date("dmY"); // Reference for order ID 123 will become 123-01022012 480 480 481 481 $token = get_post_meta($order->id, "_fatzebra_card_token", true); … … 792 792 793 793 794 $params = array("card_token" => $token, "amount" => (int)($order->order_total * 100), "reference" => "FZT-" .$order->id, "customer_ip" => $ip);794 $params = array("card_token" => $token, "amount" => (int)($order->order_total * 100), "reference" => $order->id, "customer_ip" => $ip); 795 795 796 796 // Do the payment and handle the result. -
woocommerce-fat-zebra-gateway/trunk/readme.txt
r1291302 r1291312 116 116 117 117 = 1.5.2 = 118 * Updates for new WordPress119 120 = 1.5.3 =121 118 * Fixed deprecations and errors introduced with version mismatch against WC Subscriptions 122 119 * Updated configuration to disable Visa Checkout and MasterPass by default 123 120 * Fixed Visa Checkout anti-clickjack from running on pages which are not checkout and cart 124 121 122 = 1.5.4 = 123 * Updated reference prefix used during testing 124 125 125 == Support == 126 126
Note: See TracChangeset
for help on using the changeset viewer.