Changeset 1355331
- Timestamp:
- 02/21/2016 09:40:12 PM (10 years ago)
- Location:
- bitcoin-payments-for-woocommerce/trunk
- Files:
-
- 6 edited
-
bitcoinway-woocommerce.php (modified) (1 diff)
-
bwwc-bitcoin-gateway.php (modified) (1 diff)
-
bwwc-include-all.php (modified) (1 diff)
-
bwwc-render-settings.php (modified) (1 diff)
-
libs/util/bcmath_Utils.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
bitcoin-payments-for-woocommerce/trunk/bitcoinway-woocommerce.php
r1344918 r1355331 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 48 Version: 4.05 9 9 Author: BitcoinWay 10 10 Author URI: http://www.bitcoinway.com/ -
bitcoin-payments-for-woocommerce/trunk/bwwc-bitcoin-gateway.php
r1344918 r1355331 435 435 $order_meta['bw_b_email'] = $order->billing_email; 436 436 $order_meta['bw_currency'] = $order->order_currency; 437 $order_meta['bw_settings'] = $bwwc_settings; 437 438 $order_meta['bw_store'] = plugins_url ('' , __FILE__); 438 439 -
bitcoin-payments-for-woocommerce/trunk/bwwc-include-all.php
r1344918 r1355331 9 9 if (!defined('BWWC_PLUGIN_NAME')) 10 10 { 11 define('BWWC_VERSION', '4.0 4');11 define('BWWC_VERSION', '4.05'); 12 12 13 13 //----------------------------------------------- -
bitcoin-payments-for-woocommerce/trunk/bwwc-render-settings.php
r1340245 r1355331 282 282 283 283 284 </table> 285 286 <p class="submit"> 287 <input type="submit" class="button-primary" name="button_update_bwwc_settings" value="{$value_save_changes}" /> 288 <input type="submit" class="button-secondary" style="color:red;" name="button_reset_partial_bwwc_settings" value="{$value_reset_settings}" onClick="return confirm('Are you sure you want to reset settings on this page?');" /> 289 </p> 290 </form> 291 TTT; 292 echo $html_out; 293 //{{{/PHP_ENCODE}}} ?> ///+{EDITION==Pro}/// 294 284 295 <?php 285 296 } -
bitcoin-payments-for-woocommerce/trunk/libs/util/bcmath_Utils.php
r1335289 r1355331 3 3 Copyright (C) 2012 Matyas Danter 4 4 5 Permission is hereby granted, free of charge, to any person obtaining 6 a copy of this software and associated documentation files (the "Software"), 7 to deal in the Software without restriction, including without limitation 8 the rights to use, copy, modify, merge, publish, distribute, sublicense, 9 and/or sell copies of the Software, and to permit persons to whom the 5 Permission is hereby granted, free of charge, to any person obtaining 6 a copy of this software and associated documentation files (the "Software"), 7 to deal in the Software without restriction, including without limitation 8 the rights to use, copy, modify, merge, publish, distribute, sublicense, 9 and/or sell copies of the Software, and to permit persons to whom the 10 10 Software is furnished to do so, subject to the following conditions: 11 11 12 The above copyright notice and this permission notice shall be included 12 The above copyright notice and this permission notice shall be included 13 13 in all copies or substantial portions of the Software. 14 14 15 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS 16 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 18 THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES 19 OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 20 ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 15 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS 16 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 18 THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES 19 OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 20 ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 21 21 OTHER DEALINGS IN THE SOFTWARE. 22 22 *************************************************************************/ … … 89 89 $max = self::dec2base($max, 256); 90 90 91 $buffer = [];91 $buffer = array(); 92 92 for ($i = 0; $i < strlen($min); ++$i) { 93 93 $buffer[] = substr($min, -$i - 1, 1) & substr($max, -$i - 1, 1); -
bitcoin-payments-for-woocommerce/trunk/readme.txt
r1344918 r1355331 84 84 == Changelog == 85 85 86 = 4.05 = 87 * Fixed: bcmath_utils.php - fixed issue with older (<5.4) PHP versions 88 * not supporting [] instantiation of arrays 89 86 90 = 4.04 = 87 91 * Fixed: bug in saving data within WooCommerce settings
Note: See TracChangeset
for help on using the changeset viewer.