Changeset 1344918
- Timestamp:
- 02/07/2016 12:17:44 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)
-
bwwc-utils.php (modified) (3 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
bitcoin-payments-for-woocommerce/trunk/bitcoinway-woocommerce.php
r1340245 r1344918 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 38 Version: 4.04 9 9 Author: BitcoinWay 10 10 Author URI: http://www.bitcoinway.com/ -
bitcoin-payments-for-woocommerce/trunk/bwwc-bitcoin-gateway.php
r1340245 r1344918 470 470 'order_datetime' => date('Y-m-d H:i:s T'), 471 471 'requested_by_ip' => @$_SERVER['REMOTE_ADDR'], 472 'requested_by_ua' => @$_SERVER['HTTP_USER_AGENT'], 472 473 ); 473 474 -
bitcoin-payments-for-woocommerce/trunk/bwwc-include-all.php
r1340245 r1344918 9 9 if (!defined('BWWC_PLUGIN_NAME')) 10 10 { 11 define('BWWC_VERSION', '4.0 3');11 define('BWWC_VERSION', '4.04'); 12 12 13 13 //----------------------------------------------- -
bitcoin-payments-for-woocommerce/trunk/bwwc-utils.php
r1340245 r1344918 851 851 } 852 852 853 $p = substr(md5(microtime()), 24) . 'bw'; // curl post padding 853 854 $ch = curl_init (); 854 855 … … 860 861 foreach ($post_data as $k => $v) 861 862 { 862 if (is_array($v) || is_object($v)) 863 $new_post_data[$k] = serialize($v); 863 $safetied = $v; 864 if (is_object($safetied)) 865 $safetied = BWWC__object_to_array($safetied); 866 if (is_array($safetied)) 867 { 868 $safetied = serialize($safetied); 869 $safetied = $p . str_replace('=', '_', base64_encode($safetied)); 870 $new_post_data[$k] = $safetied; 871 } 864 872 } 865 873 } … … 922 930 return FALSE; 923 931 } 932 } 933 //=========================================================================== 934 935 //=========================================================================== 936 function BWWC__object_to_array ($object) 937 { 938 if (!is_object($object) && !is_array($object)) 939 return $object; 940 return array_map('BWWC__object_to_array', (array) $object); 924 941 } 925 942 //=========================================================================== -
bitcoin-payments-for-woocommerce/trunk/readme.txt
r1335289 r1344918 84 84 == Changelog == 85 85 86 = 4.04 = 87 * Fixed: bug in saving data within WooCommerce settings 88 * Fixed: issue with curl 89 86 90 = 4.02 = 87 91 * Fixed: Support for Electrum 2.x Master Public Key
Note: See TracChangeset
for help on using the changeset viewer.