Plugin Directory

Changeset 992949


Ignore:
Timestamp:
09/18/2014 11:15:42 PM (12 years ago)
Author:
gesman
Message:

Version update

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

Legend:

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

    r919713 r992949  
    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: 3.10
     8Version: 3.12
    99Author: BitcoinWay
    1010Author URI: http://www.bitcoinway.com/
  • bitcoin-payments-for-woocommerce/trunk/bwwc-include-all.php

    r919713 r992949  
    99if (!defined('BWWC_PLUGIN_NAME'))
    1010  {
    11   define('BWWC_VERSION',           '3.10');
     11  define('BWWC_VERSION',           '3.12');
    1212
    1313  //-----------------------------------------------
  • bitcoin-payments-for-woocommerce/trunk/bwwc-utils.php

    r903309 r992949  
    781781function BWWC__file_get_contents ($url, $return_content_on_error=false, $timeout=60, $user_agent=FALSE)
    782782{
     783
    783784   if (!function_exists('curl_init'))
    784785      {
    785       return @file_get_contents ($url);
     786      $ret_val = @file_get_contents ($url);
     787
     788            return $ret_val;
    786789      }
    787790
     
    798801      CURLOPT_FOLLOWLOCATION => true,     // follow redirects
    799802      CURLOPT_MAXREDIRS      => 10,       // stop after 10 redirects
     803      CURLOPT_SSL_VERIFYPEER => false,    // Disable SSL verification
    800804      );
    801805
     
    819823      curl_setopt ($ch, CURLOPT_FOLLOWLOCATION , true);     // follow redirects
    820824      curl_setopt ($ch, CURLOPT_MAXREDIRS      , 10);       // stop after 10 redirects
     825      curl_setopt($ch, CURLOPT_SSL_VERIFYPEER  , false);    // Disable SSL verifications
    821826      }
    822827
     
    825830   $header  = curl_getinfo($ch);
    826831   // $errmsg  = curl_error  ($ch);
     832
    827833
    828834   curl_close             ($ch);
  • bitcoin-payments-for-woocommerce/trunk/readme.txt

    r919713 r992949  
    44Tags: bitcoin, bitcoin wordpress plugin, bitcoin plugin, bitcoin payments, accept bitcoin, bitcoins
    55Requires at least: 3.0.1
    6 Tested up to: 3.9
     6Tested up to: 4.0
    77Stable tag: trunk
    88License: GPLv2 or later
     
    3232* Automatic conversion to bitcoin via realtime exchange rate feed and calculations.
    3333* Ability to set exchange rate calculation multiplier to compensate for any possible losses due to bank conversions and funds transfer fees.
     34* Please donate BTC to help development here: 12fFTMkeu3mcunCtGHtWb7o5BcWA9eFx7R
    3435
    3536
     
    8182
    8283== Changelog ==
     84
     85= 3.12 =
     86* Fixed "Unable to determine exchange rate error"
    8387
    8488= 3.10 =
Note: See TracChangeset for help on using the changeset viewer.