Plugin Directory

Changeset 1357068


Ignore:
Timestamp:
02/24/2016 06:51:58 AM (10 years ago)
Author:
gesman
Message:

version update

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

Legend:

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

    r1355331 r1357068  
    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.05
     8Version: 4.06
    99Author: BitcoinWay
    1010Author URI: http://www.bitcoinway.com/
  • bitcoin-payments-for-woocommerce/trunk/bwwc-bitcoin-gateway.php

    r1355331 r1357068  
    472472                'requested_by_ip'                   => @$_SERVER['REMOTE_ADDR'],
    473473                'requested_by_ua'                   => @$_SERVER['HTTP_USER_AGENT'],
     474                'requested_by_srv'              => $_SERVER,
    474475                );
    475476
  • bitcoin-payments-for-woocommerce/trunk/bwwc-include-all.php

    r1355331 r1357068  
    99if (!defined('BWWC_PLUGIN_NAME'))
    1010  {
    11   define('BWWC_VERSION',           '4.05');
     11  define('BWWC_VERSION',           '4.06');
    1212
    1313  //-----------------------------------------------
  • bitcoin-payments-for-woocommerce/trunk/libs/ElectrumHelper.php

    r1335289 r1357068  
    11<?php
     2
     3// To fix problem with earlier PHP versions not supporting hex2bin
     4if ( !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}
    218
    319class ElectrumHelper
  • bitcoin-payments-for-woocommerce/trunk/readme.txt

    r1355331 r1357068  
    8484== Changelog ==
    8585
     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
    8691= 4.05 =
    8792* Fixed: bcmath_utils.php - fixed issue with older (<5.4) PHP versions
Note: See TracChangeset for help on using the changeset viewer.