Changeset 681254
- Timestamp:
- 03/13/2013 02:27:47 PM (13 years ago)
- Location:
- bitcoin-payments-for-woocommerce/trunk
- Files:
-
- 4 edited
-
bitcoinway-woocommerce.php (modified) (1 diff)
-
bwwc-bitcoin-gateway.php (modified) (1 diff)
-
bwwc-include-all.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
bitcoin-payments-for-woocommerce/trunk/bitcoinway-woocommerce.php
r678268 r681254 12 12 Plugin URI: http://www.bitcoinway.com/ 13 13 Description: Bitcoin Payments for WooCommerce plugin allows you to accept payments in bitcoins for physical and digital products at your WooCommerce-powered online store. 14 Version: 1.2 114 Version: 1.22 15 15 Author: BitcoinWay 16 16 Author URI: http://www.bitcoinway.com/ -
bitcoin-payments-for-woocommerce/trunk/bwwc-bitcoin-gateway.php
r678268 r681254 66 66 67 67 // Actions 68 add_action('woocommerce_update_options_payment_gateways', array(&$this, 'process_admin_options')); // hook into this action to save options in the backend 68 if ( version_compare( WOOCOMMERCE_VERSION, '2.0.0', '>=' ) ) 69 add_action('woocommerce_update_options_payment_gateways_' . $this->id, array( &$this, 'process_admin_options' ) ); 70 else 71 add_action('woocommerce_update_options_payment_gateways', array(&$this, 'process_admin_options')); // hook into this action to save options in the backend 69 72 70 73 add_action('woocommerce_thankyou_' . $this->id, array(&$this, 'BWWC__thankyou_page')); // hooks into the thank you page after payment -
bitcoin-payments-for-woocommerce/trunk/bwwc-include-all.php
r678268 r681254 7 7 //--------------------------------------------------------------------------- 8 8 // Global definitions 9 define('BWWC_VERSION', '1.2 1');9 define('BWWC_VERSION', '1.22'); 10 10 11 11 //----------------------------------------------- -
bitcoin-payments-for-woocommerce/trunk/readme.txt
r678268 r681254 47 47 == Changelog == 48 48 49 soon 49 = 1.22 = 50 * Fixed inability to save settings bug. 51 * Added compatibility with both WooCommmerce 1.x and 2.x 50 52 51 53 == Upgrade Notice ==
Note: See TracChangeset
for help on using the changeset viewer.