Plugin Directory

Changeset 1303710


Ignore:
Timestamp:
12/09/2015 08:39:57 AM (10 years ago)
Author:
ConsidS5
Message:

Fixes a bug with token that is being incorrect encoded when sent to GetResult().

Location:
easycontract/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • easycontract/trunk/gateways/santander-loan.php

    r1279385 r1303710  
    213213   
    214214    public function check_result( $token ) {
     215        $token = str_replace(array('/', '+'), array('%2f', '%2b'), $token);
    215216        $order_number = $this->get_order_number();
    216217        $order = wc_get_order( $order_number );
  • easycontract/trunk/includes/classes/Santander_APIConnector.php

    r1293372 r1303710  
    121121   
    122122    private function _getModuleVersion() {
    123         return '1.0.4wo';
     123        return '1.0.5wo';
    124124    }
    125125   
  • easycontract/trunk/readme.txt

    r1293372 r1303710  
    44Requires at least: 4.0
    55Tested up to: 4.4
    6 Stable tag: 1.0.4 wo
     6Stable tag: 1.0.5wo
    77License: GPLv3
    88License URI: http://www.gnu.org/licenses/gpl-3.0.html
     9WC requires at least: 2.4.6
     10WC tested up to: 2.4.11
    911
    1012== Description ==
     
    2123
    2224== Changelog ==
     25= 1.0.5wo =
     26* Bug: Fixes a bug with token that is being incorrect encoded when sent to GetResult().
     27
    2328= 1.0.4wo =
    2429* Bug: Solves an issue with verifying user account details.
  • easycontract/trunk/santander.php

    r1293372 r1303710  
    44Plugin URI: https://github.com/SantanderApps/SantanderPaymentProviderWooCommerce
    55Description: Integrates Santander Consumer Bank into WooCommerce.
    6 Version: 1.0.4wo
     6Version: 1.0.5wo
    77Author: Santander
    88Author URI: http://santander.consid.se
Note: See TracChangeset for help on using the changeset viewer.