Plugin Directory

Changeset 1451003


Ignore:
Timestamp:
07/08/2016 06:01:13 AM (10 years ago)
Author:
gesman
Message:

version update

Location:
bitcoin-payments-for-woocommerce/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • bitcoin-payments-for-woocommerce/trunk/bitcoinway-woocommerce.php

    r1449393 r1451003  
    66Plugin URI: http://www.bitcoinway.com/
    77Description: Bitcoin Payments for WooCommerce plugin allows you to accept payments in bitcoins for physical and digital products at your WooCommerce-powered online store.
    8 Version: 4.09
     8Version: 4.11
    99Author: BitcoinWay
    1010Author URI: http://www.bitcoinway.com/
  • bitcoin-payments-for-woocommerce/trunk/bwwc-include-all.php

    r1449393 r1451003  
    99if (!defined('BWWC_PLUGIN_NAME'))
    1010  {
    11   define('BWWC_VERSION',           '4.09');
     11  define('BWWC_VERSION',           '4.11');
    1212
    1313  //-----------------------------------------------
  • bitcoin-payments-for-woocommerce/trunk/bwwc-utils.php

    r1449393 r1451003  
    482482  // https://blockexplorer.com/api/addr/1KWd23GZ4BmTMo9zcsUZXpWP4M8hmxZwRU/totalReceived
    483483  // https://blockchain.info/q/getreceivedbyaddress/1H9uAP3x439YvQDoKNGgSYCg3FmrYRzpD2 [?confirmations=6]
    484     if (!bwwc_settings)
     484    if (!$bwwc_settings)
    485485    $bwwc_settings = BWWC__get_settings ();
    486486
     
    502502   $funds_received=false;
    503503    // Try to get get address balance from aggregated API first to avoid excessive hits to blockchain and other services.
    504     if ($bwwc_settings['use_aggregated_api'])
     504    if (@$bwwc_settings['use_aggregated_api'] != 'no')
    505505        $funds_received = BWWC__file_get_contents ('https://blockchain.bitcoinway.com/?q=getreceivedbyaddress', true, $api_timeout, false, true, $address_request_array);
    506506
  • bitcoin-payments-for-woocommerce/trunk/readme.txt

    r1449393 r1451003  
    8383
    8484== Changelog ==
     85
     86= 4.11 =
     87* Fixed: Bug - missing '$' sign in variable.
    8588
    8689= 4.09 =
Note: See TracChangeset for help on using the changeset viewer.