Plugin Directory

Changeset 1291312


Ignore:
Timestamp:
11/21/2015 04:42:16 AM (10 years ago)
Author:
fatzebra
Message:

Removed introduced prefix

Location:
woocommerce-fat-zebra-gateway/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • woocommerce-fat-zebra-gateway/trunk/class-wc-fatzebra.php

    r1291310 r1291312  
    55Plugin URI: https://www.fatzebra.com.au/support/supported-carts
    66Description: Extends WooCommerce with Fat Zebra payment gateway along with WooCommerce subscriptions support.
    7 Version: 1.5.3
     7Version: 1.5.4
    88Author: Fat Zebra
    99Author URI: https://www.fatzebra.com.au
     
    288288      }
    289289
    290       $this->params["reference"] = "FZT-" . (string)$order_id;
     290      $this->params["reference"] = (string)$order_id;
    291291      $test_mode = $this->settings['test_mode'] == 'yes';
    292292      $this->params["test"] = $test_mode;
     
    477477      $this->params["amount"] = (int)($amount_to_charge * 100);
    478478      $this->params["test"] = $test_mode;
    479       $this->params["reference"] = "FZT-" . $order->id . "-" . date("dmY"); // Reference for order ID 123 will become 123-01022012
     479      $this->params["reference"] = $order->id . "-" . date("dmY"); // Reference for order ID 123 will become 123-01022012
    480480
    481481      $token = get_post_meta($order->id, "_fatzebra_card_token", true);
     
    792792
    793793
    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);
    795795
    796796    // Do the payment and handle the result.
  • woocommerce-fat-zebra-gateway/trunk/readme.txt

    r1291302 r1291312  
    116116
    117117= 1.5.2 =
    118 * Updates for new WordPress
    119 
    120 = 1.5.3 =
    121118* Fixed deprecations and errors introduced with version mismatch against WC Subscriptions
    122119* Updated configuration to disable Visa Checkout and MasterPass by default
    123120* Fixed Visa Checkout anti-clickjack from running on pages which are not checkout and cart
    124121
     122= 1.5.4 =
     123* Updated reference prefix used during testing
     124
    125125== Support ==
    126126
Note: See TracChangeset for help on using the changeset viewer.