Plugin Directory

Changeset 2750170


Ignore:
Timestamp:
06/30/2022 10:58:16 AM (4 years ago)
Author:
bsecuretech
Message:

1.6.9 Released General Update and Bug Fixes

Location:
bsecure/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • bsecure/trunk/bsecure.php

    r2749462 r2750170  
    66 * Author: bSecure
    77 * Author URI:
    8  * Version: 1.6.8
     8 * Version: 1.6.9
    99 *
    1010 */
  • bsecure/trunk/includes/class-bsecure-checkout.php

    r2749462 r2750170  
    32243224    public function getAccessTokenSessionOrBsecure(){
    32253225
     3226        if(!class_exists('WC_Session_Handler')){
     3227            return false;
     3228        }
     3229       
     3230        WC()->session = new WC_Session_Handler();
     3231
     3232        WC()->session->init();
     3233
    32263234        if(!empty(WC()->session->get('bsecure_access_token'))){
    32273235
  • bsecure/trunk/includes/class-wc-bsecure.php

    r2749462 r2750170  
    3030
    3131    const PLUGIN_NAME = 'WooCommerce';
    32     const PLUGIN_VERSION = '1.6.8';
     32    const PLUGIN_VERSION = '1.6.9';
    3333    const QISSTPAY_PER_MONTH = 4;
    3434    const QISSTPAY_AMOUNT_MAX_LIMIT = 50000;
  • bsecure/trunk/includes/templates/qisstpay-popup.php

    r2676986 r2750170  
    33$cart_total_amount = 0;
    44
    5 if( ! WC()->cart->is_empty() ){
     5if (function_exists('WC')) {
    66
    77    $cart_total_amount = floatval( preg_replace( '#[^\d.]#', '', WC()->cart->get_cart_total() ) );
  • bsecure/trunk/readme.txt

    r2749462 r2750170  
    55Tested up to: 6.0
    66Requires PHP: 5.6.20 or above
    7 Stable tag: 1.6.8
     7Stable tag: 1.6.9
    88License: GNU General Public License v3.0
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    100100* 1.6.7 Shipment status mapping feature added and Bug Fixes
    101101
    102 = 1.6.8 June 29, 2022 =
    103 * 1.6.8 General Update & Bug Fixes
     102= 1.6.9 June 30, 2022 =
     103* 1.6.9 General Update & Bug Fixes
    104104
    105105== Upgrade Notice ==
     
    140140* 1.6.7 Released General Update and Bug Fixes
    141141
    142 = 1.6.8 June 29, 2022 =
    143 * 1.6.8 Released General Update & Bug Fixes
     142= 1.6.9 June 30, 2022 =
     143* 1.6.9 Released General Update & Bug Fixes
    144144
    145145== Screenshots ==
Note: See TracChangeset for help on using the changeset viewer.