Changeset 992949
- Timestamp:
- 09/18/2014 11:15:42 PM (12 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) (4 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
bitcoin-payments-for-woocommerce/trunk/bitcoinway-woocommerce.php
r919713 r992949 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: 3.1 08 Version: 3.12 9 9 Author: BitcoinWay 10 10 Author URI: http://www.bitcoinway.com/ -
bitcoin-payments-for-woocommerce/trunk/bwwc-include-all.php
r919713 r992949 9 9 if (!defined('BWWC_PLUGIN_NAME')) 10 10 { 11 define('BWWC_VERSION', '3.1 0');11 define('BWWC_VERSION', '3.12'); 12 12 13 13 //----------------------------------------------- -
bitcoin-payments-for-woocommerce/trunk/bwwc-utils.php
r903309 r992949 781 781 function BWWC__file_get_contents ($url, $return_content_on_error=false, $timeout=60, $user_agent=FALSE) 782 782 { 783 783 784 if (!function_exists('curl_init')) 784 785 { 785 return @file_get_contents ($url); 786 $ret_val = @file_get_contents ($url); 787 788 return $ret_val; 786 789 } 787 790 … … 798 801 CURLOPT_FOLLOWLOCATION => true, // follow redirects 799 802 CURLOPT_MAXREDIRS => 10, // stop after 10 redirects 803 CURLOPT_SSL_VERIFYPEER => false, // Disable SSL verification 800 804 ); 801 805 … … 819 823 curl_setopt ($ch, CURLOPT_FOLLOWLOCATION , true); // follow redirects 820 824 curl_setopt ($ch, CURLOPT_MAXREDIRS , 10); // stop after 10 redirects 825 curl_setopt($ch, CURLOPT_SSL_VERIFYPEER , false); // Disable SSL verifications 821 826 } 822 827 … … 825 830 $header = curl_getinfo($ch); 826 831 // $errmsg = curl_error ($ch); 832 827 833 828 834 curl_close ($ch); -
bitcoin-payments-for-woocommerce/trunk/readme.txt
r919713 r992949 4 4 Tags: bitcoin, bitcoin wordpress plugin, bitcoin plugin, bitcoin payments, accept bitcoin, bitcoins 5 5 Requires at least: 3.0.1 6 Tested up to: 3.96 Tested up to: 4.0 7 7 Stable tag: trunk 8 8 License: GPLv2 or later … … 32 32 * Automatic conversion to bitcoin via realtime exchange rate feed and calculations. 33 33 * Ability to set exchange rate calculation multiplier to compensate for any possible losses due to bank conversions and funds transfer fees. 34 * Please donate BTC to help development here: 12fFTMkeu3mcunCtGHtWb7o5BcWA9eFx7R 34 35 35 36 … … 81 82 82 83 == Changelog == 84 85 = 3.12 = 86 * Fixed "Unable to determine exchange rate error" 83 87 84 88 = 3.10 =
Note: See TracChangeset
for help on using the changeset viewer.