Changeset 1451003
- Timestamp:
- 07/08/2016 06:01:13 AM (10 years ago)
- Location:
- bitcoin-payments-for-woocommerce/trunk
- Files:
-
- 4 edited
-
bitcoinway-woocommerce.php (modified) (1 diff)
-
bwwc-include-all.php (modified) (1 diff)
-
bwwc-utils.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
bitcoin-payments-for-woocommerce/trunk/bitcoinway-woocommerce.php
r1449393 r1451003 6 6 Plugin URI: http://www.bitcoinway.com/ 7 7 Description: 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. 098 Version: 4.11 9 9 Author: BitcoinWay 10 10 Author URI: http://www.bitcoinway.com/ -
bitcoin-payments-for-woocommerce/trunk/bwwc-include-all.php
r1449393 r1451003 9 9 if (!defined('BWWC_PLUGIN_NAME')) 10 10 { 11 define('BWWC_VERSION', '4. 09');11 define('BWWC_VERSION', '4.11'); 12 12 13 13 //----------------------------------------------- -
bitcoin-payments-for-woocommerce/trunk/bwwc-utils.php
r1449393 r1451003 482 482 // https://blockexplorer.com/api/addr/1KWd23GZ4BmTMo9zcsUZXpWP4M8hmxZwRU/totalReceived 483 483 // https://blockchain.info/q/getreceivedbyaddress/1H9uAP3x439YvQDoKNGgSYCg3FmrYRzpD2 [?confirmations=6] 484 if (! bwwc_settings)484 if (!$bwwc_settings) 485 485 $bwwc_settings = BWWC__get_settings (); 486 486 … … 502 502 $funds_received=false; 503 503 // 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') 505 505 $funds_received = BWWC__file_get_contents ('https://blockchain.bitcoinway.com/?q=getreceivedbyaddress', true, $api_timeout, false, true, $address_request_array); 506 506 -
bitcoin-payments-for-woocommerce/trunk/readme.txt
r1449393 r1451003 83 83 84 84 == Changelog == 85 86 = 4.11 = 87 * Fixed: Bug - missing '$' sign in variable. 85 88 86 89 = 4.09 =
Note: See TracChangeset
for help on using the changeset viewer.