Changeset 2979835
- Timestamp:
- 10/17/2023 03:37:32 AM (2 years ago)
- Location:
- triplea-cryptocurrency-payment-gateway-for-woocommerce
- Files:
-
- 8 edited
- 1 copied
-
tags/2.0.12 (copied) (copied from triplea-cryptocurrency-payment-gateway-for-woocommerce/trunk)
-
tags/2.0.12/includes/WooCommerce/Thank_You.php (modified) (1 diff)
-
tags/2.0.12/includes/WooCommerce/TripleA_Payment_Gateway.php (modified) (3 diffs)
-
tags/2.0.12/readme.txt (modified) (3 diffs)
-
tags/2.0.12/triplea-cryptocurrency-payment-gateway-for-woocommerce.php (modified) (2 diffs)
-
trunk/includes/WooCommerce/Thank_You.php (modified) (1 diff)
-
trunk/includes/WooCommerce/TripleA_Payment_Gateway.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/triplea-cryptocurrency-payment-gateway-for-woocommerce.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
triplea-cryptocurrency-payment-gateway-for-woocommerce/tags/2.0.12/includes/WooCommerce/Thank_You.php
r2974604 r2979835 33 33 public static function triplea_change_order_received_text( $str, $order ) { 34 34 35 if (isset($order) && $order ->has_status( 'failed' )) {35 if (isset($order) && $order && $order->has_status( 'failed' )) { 36 36 37 37 $new_str = $str . '<br>' -
triplea-cryptocurrency-payment-gateway-for-woocommerce/tags/2.0.12/includes/WooCommerce/TripleA_Payment_Gateway.php
r2945763 r2979835 623 623 $date_now = (new DateTime())->getTimestamp(); 624 624 $buffer_time = 600; // 10 min buffer time, so new token will generated after 50 min 625 $current_token_expiry = $this->get_option('oauth_token_expiry');625 $current_token_expiry = intval($this->get_option('oauth_token_expiry')); 626 626 $current_token = $this->get_option('oauth_token'); 627 627 … … 649 649 $date_now = (new DateTime())->getTimestamp(); 650 650 $buffer_time = 600; // 10 min buffer time, so new token will generated after 50 min 651 $current_token_expiry = $this->get_option('oauth_token_expiry');651 $current_token_expiry = intval($this->get_option('oauth_token_expiry')); 652 652 $current_token = $this->get_option('oauth_token'); 653 653 … … 704 704 $date_now = (new DateTime())->getTimestamp(); 705 705 $buffer_time = 600; // 10 min buffer time, so new token will generated after 50 min 706 $current_token_expiry = $this->get_option('oauth_token_expiry');706 $current_token_expiry = intval($this->get_option('oauth_token_expiry')); 707 707 $current_token = $this->get_option('oauth_token'); 708 708 -
triplea-cryptocurrency-payment-gateway-for-woocommerce/tags/2.0.12/readme.txt
r2974604 r2979835 7 7 Requires at least: 5.5 8 8 Tested up to: 6.2.2 9 Stable tag: 2.0.1 19 Stable tag: 2.0.12 10 10 Requires PHP: 7.0 11 11 License: GPLv2 or later … … 109 109 == Changelog == 110 110 111 = 2.0.12 = 112 Fixed: Validation for getting token and thank you message 113 111 114 = 2.0.11 = 112 115 Fixed: Review message will be displayed only for admin … … 287 290 == Upgrade Notice == 288 291 292 = 2.0.12 = 293 Simply install the update. No further action is needed. 294 289 295 = 2.0.11 = 290 296 Simply install the update. No further action is needed. -
triplea-cryptocurrency-payment-gateway-for-woocommerce/tags/2.0.12/triplea-cryptocurrency-payment-gateway-for-woocommerce.php
r2974604 r2979835 17 17 * Plugin URI: https://wordpress.org/plugins/triplea-cryptocurrency-payment-gateway-for-woocommerce/ 18 18 * Description: Offer cryptocurrency as a payment option on your website and get access to even more clients. Receive payments in cryptocurrency or in your local currency, directly in your bank account. Enjoy an easy setup, no cryptocurrency expertise required. Powered by TripleA. 19 * Version: 2.0.1 119 * Version: 2.0.12 20 20 * Author: TripleA Team 21 21 * Author URI: https://triple-a.io … … 45 45 * $var string 46 46 */ 47 const version = '2.0.1 1';47 const version = '2.0.12'; 48 48 49 49 /* -
triplea-cryptocurrency-payment-gateway-for-woocommerce/trunk/includes/WooCommerce/Thank_You.php
r2974604 r2979835 33 33 public static function triplea_change_order_received_text( $str, $order ) { 34 34 35 if (isset($order) && $order ->has_status( 'failed' )) {35 if (isset($order) && $order && $order->has_status( 'failed' )) { 36 36 37 37 $new_str = $str . '<br>' -
triplea-cryptocurrency-payment-gateway-for-woocommerce/trunk/includes/WooCommerce/TripleA_Payment_Gateway.php
r2945763 r2979835 623 623 $date_now = (new DateTime())->getTimestamp(); 624 624 $buffer_time = 600; // 10 min buffer time, so new token will generated after 50 min 625 $current_token_expiry = $this->get_option('oauth_token_expiry');625 $current_token_expiry = intval($this->get_option('oauth_token_expiry')); 626 626 $current_token = $this->get_option('oauth_token'); 627 627 … … 649 649 $date_now = (new DateTime())->getTimestamp(); 650 650 $buffer_time = 600; // 10 min buffer time, so new token will generated after 50 min 651 $current_token_expiry = $this->get_option('oauth_token_expiry');651 $current_token_expiry = intval($this->get_option('oauth_token_expiry')); 652 652 $current_token = $this->get_option('oauth_token'); 653 653 … … 704 704 $date_now = (new DateTime())->getTimestamp(); 705 705 $buffer_time = 600; // 10 min buffer time, so new token will generated after 50 min 706 $current_token_expiry = $this->get_option('oauth_token_expiry');706 $current_token_expiry = intval($this->get_option('oauth_token_expiry')); 707 707 $current_token = $this->get_option('oauth_token'); 708 708 -
triplea-cryptocurrency-payment-gateway-for-woocommerce/trunk/readme.txt
r2974604 r2979835 7 7 Requires at least: 5.5 8 8 Tested up to: 6.2.2 9 Stable tag: 2.0.1 19 Stable tag: 2.0.12 10 10 Requires PHP: 7.0 11 11 License: GPLv2 or later … … 109 109 == Changelog == 110 110 111 = 2.0.12 = 112 Fixed: Validation for getting token and thank you message 113 111 114 = 2.0.11 = 112 115 Fixed: Review message will be displayed only for admin … … 287 290 == Upgrade Notice == 288 291 292 = 2.0.12 = 293 Simply install the update. No further action is needed. 294 289 295 = 2.0.11 = 290 296 Simply install the update. No further action is needed. -
triplea-cryptocurrency-payment-gateway-for-woocommerce/trunk/triplea-cryptocurrency-payment-gateway-for-woocommerce.php
r2974604 r2979835 17 17 * Plugin URI: https://wordpress.org/plugins/triplea-cryptocurrency-payment-gateway-for-woocommerce/ 18 18 * Description: Offer cryptocurrency as a payment option on your website and get access to even more clients. Receive payments in cryptocurrency or in your local currency, directly in your bank account. Enjoy an easy setup, no cryptocurrency expertise required. Powered by TripleA. 19 * Version: 2.0.1 119 * Version: 2.0.12 20 20 * Author: TripleA Team 21 21 * Author URI: https://triple-a.io … … 45 45 * $var string 46 46 */ 47 const version = '2.0.1 1';47 const version = '2.0.12'; 48 48 49 49 /*
Note: See TracChangeset
for help on using the changeset viewer.