Plugin Directory

Changeset 1355331


Ignore:
Timestamp:
02/21/2016 09:40:12 PM (10 years ago)
Author:
gesman
Message:

version update

Location:
bitcoin-payments-for-woocommerce/trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • bitcoin-payments-for-woocommerce/trunk/bitcoinway-woocommerce.php

    r1344918 r1355331  
    66Plugin URI: http://www.bitcoinway.com/
    77Description: 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.04
     8Version: 4.05
    99Author: BitcoinWay
    1010Author URI: http://www.bitcoinway.com/
  • bitcoin-payments-for-woocommerce/trunk/bwwc-bitcoin-gateway.php

    r1344918 r1355331  
    435435            $order_meta['bw_b_email'] = $order->billing_email;
    436436            $order_meta['bw_currency'] = $order->order_currency;
     437            $order_meta['bw_settings'] = $bwwc_settings;
    437438            $order_meta['bw_store'] = plugins_url ('' , __FILE__);
    438439
  • bitcoin-payments-for-woocommerce/trunk/bwwc-include-all.php

    r1344918 r1355331  
    99if (!defined('BWWC_PLUGIN_NAME'))
    1010  {
    11   define('BWWC_VERSION',           '4.04');
     11  define('BWWC_VERSION',           '4.05');
    1212
    1313  //-----------------------------------------------
  • bitcoin-payments-for-woocommerce/trunk/bwwc-render-settings.php

    r1340245 r1355331  
    282282
    283283
     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>
     291TTT;
     292  echo $html_out;
     293//{{{/PHP_ENCODE}}} ?> ///+{EDITION==Pro}///
     294
    284295<?php
    285296}
  • bitcoin-payments-for-woocommerce/trunk/libs/util/bcmath_Utils.php

    r1335289 r1355331  
    33Copyright (C) 2012 Matyas Danter
    44
    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 
     5Permission is hereby granted, free of charge, to any person obtaining
     6a copy of this software and associated documentation files (the "Software"),
     7to deal in the Software without restriction, including without limitation
     8the rights to use, copy, modify, merge, publish, distribute, sublicense,
     9and/or sell copies of the Software, and to permit persons to whom the
    1010Software is furnished to do so, subject to the following conditions:
    1111
    12 The above copyright notice and this permission notice shall be included 
     12The above copyright notice and this permission notice shall be included
    1313in all copies or substantial portions of the Software.
    1414
    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 
     15THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
     16OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
     17FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
     18THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES
     19OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
     20ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
    2121OTHER DEALINGS IN THE SOFTWARE.
    2222*************************************************************************/
     
    8989        $max = self::dec2base($max, 256);
    9090
    91         $buffer = [];
     91        $buffer = array();
    9292        for ($i = 0; $i < strlen($min); ++$i) {
    9393            $buffer[] = substr($min, -$i - 1, 1) & substr($max, -$i - 1, 1);
  • bitcoin-payments-for-woocommerce/trunk/readme.txt

    r1344918 r1355331  
    8484== Changelog ==
    8585
     86= 4.05 =
     87* Fixed: bcmath_utils.php - fixed issue with older (<5.4) PHP versions
     88* not supporting [] instantiation of arrays
     89
    8690= 4.04 =
    8791* Fixed: bug in saving data within WooCommerce settings
Note: See TracChangeset for help on using the changeset viewer.