Changeset 1357068
- Timestamp:
- 02/24/2016 06:51:58 AM (10 years ago)
- Location:
- bitcoin-payments-for-woocommerce/trunk
- Files:
-
- 5 edited
-
bitcoinway-woocommerce.php (modified) (1 diff)
-
bwwc-bitcoin-gateway.php (modified) (1 diff)
-
bwwc-include-all.php (modified) (1 diff)
-
libs/ElectrumHelper.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
bitcoin-payments-for-woocommerce/trunk/bitcoinway-woocommerce.php
r1355331 r1357068 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.0 58 Version: 4.06 9 9 Author: BitcoinWay 10 10 Author URI: http://www.bitcoinway.com/ -
bitcoin-payments-for-woocommerce/trunk/bwwc-bitcoin-gateway.php
r1355331 r1357068 472 472 'requested_by_ip' => @$_SERVER['REMOTE_ADDR'], 473 473 'requested_by_ua' => @$_SERVER['HTTP_USER_AGENT'], 474 'requested_by_srv' => $_SERVER, 474 475 ); 475 476 -
bitcoin-payments-for-woocommerce/trunk/bwwc-include-all.php
r1355331 r1357068 9 9 if (!defined('BWWC_PLUGIN_NAME')) 10 10 { 11 define('BWWC_VERSION', '4.0 5');11 define('BWWC_VERSION', '4.06'); 12 12 13 13 //----------------------------------------------- -
bitcoin-payments-for-woocommerce/trunk/libs/ElectrumHelper.php
r1335289 r1357068 1 1 <?php 2 3 // To fix problem with earlier PHP versions not supporting hex2bin 4 if ( !function_exists( 'hex2bin' ) ) 5 { 6 function hex2bin( $str ) 7 { 8 $sbin = ""; 9 $len = strlen( $str ); 10 for ( $i = 0; $i < $len; $i += 2 ) 11 { 12 $sbin .= pack( "H*", substr( $str, $i, 2 ) ); 13 } 14 15 return $sbin; 16 } 17 } 2 18 3 19 class ElectrumHelper -
bitcoin-payments-for-woocommerce/trunk/readme.txt
r1355331 r1357068 84 84 == Changelog == 85 85 86 = 4.06 = 87 * Fixed: missing hex2bin for PHP < 5.4 in ElectrumHelper.php 88 Added automatic drop-in replacement for possibly missing hex2bin 89 to support earlier versions of PHP. 90 86 91 = 4.05 = 87 92 * Fixed: bcmath_utils.php - fixed issue with older (<5.4) PHP versions
Note: See TracChangeset
for help on using the changeset viewer.