Changeset 2750170
- Timestamp:
- 06/30/2022 10:58:16 AM (4 years ago)
- Location:
- bsecure/trunk
- Files:
-
- 5 edited
-
bsecure.php (modified) (1 diff)
-
includes/class-bsecure-checkout.php (modified) (1 diff)
-
includes/class-wc-bsecure.php (modified) (1 diff)
-
includes/templates/qisstpay-popup.php (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
bsecure/trunk/bsecure.php
r2749462 r2750170 6 6 * Author: bSecure 7 7 * Author URI: 8 * Version: 1.6. 88 * Version: 1.6.9 9 9 * 10 10 */ -
bsecure/trunk/includes/class-bsecure-checkout.php
r2749462 r2750170 3224 3224 public function getAccessTokenSessionOrBsecure(){ 3225 3225 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 3226 3234 if(!empty(WC()->session->get('bsecure_access_token'))){ 3227 3235 -
bsecure/trunk/includes/class-wc-bsecure.php
r2749462 r2750170 30 30 31 31 const PLUGIN_NAME = 'WooCommerce'; 32 const PLUGIN_VERSION = '1.6. 8';32 const PLUGIN_VERSION = '1.6.9'; 33 33 const QISSTPAY_PER_MONTH = 4; 34 34 const QISSTPAY_AMOUNT_MAX_LIMIT = 50000; -
bsecure/trunk/includes/templates/qisstpay-popup.php
r2676986 r2750170 3 3 $cart_total_amount = 0; 4 4 5 if ( ! WC()->cart->is_empty() ){5 if (function_exists('WC')) { 6 6 7 7 $cart_total_amount = floatval( preg_replace( '#[^\d.]#', '', WC()->cart->get_cart_total() ) ); -
bsecure/trunk/readme.txt
r2749462 r2750170 5 5 Tested up to: 6.0 6 6 Requires PHP: 5.6.20 or above 7 Stable tag: 1.6. 87 Stable tag: 1.6.9 8 8 License: GNU General Public License v3.0 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 100 100 * 1.6.7 Shipment status mapping feature added and Bug Fixes 101 101 102 = 1.6. 8 June 29, 2022 =103 * 1.6. 8General Update & Bug Fixes102 = 1.6.9 June 30, 2022 = 103 * 1.6.9 General Update & Bug Fixes 104 104 105 105 == Upgrade Notice == … … 140 140 * 1.6.7 Released General Update and Bug Fixes 141 141 142 = 1.6. 8 June 29, 2022 =143 * 1.6. 8Released General Update & Bug Fixes142 = 1.6.9 June 30, 2022 = 143 * 1.6.9 Released General Update & Bug Fixes 144 144 145 145 == Screenshots ==
Note: See TracChangeset
for help on using the changeset viewer.