Changeset 2902806
- Timestamp:
- 04/22/2023 07:19:10 PM (3 years ago)
- Location:
- cashfree/trunk
- Files:
-
- 2 edited
-
cashfree.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
cashfree/trunk/cashfree.php
r2891973 r2902806 2 2 /** 3 3 * Plugin Name: Cashfree 4 * Version: 4.4. 54 * Version: 4.4.6 5 5 * Plugin URI: https://github.com/cashfree/cashfree-woocommerce 6 6 * Description: Payment gateway plugin by Cashfree Payments for Woocommerce sites. … … 77 77 78 78 public function wp_cashfree_offers() { 79 if ( isset($this->settings['enabledOffers']) === 'yes' && $this->settings['sandbox'] === 'no') { 79 if ( isset($this->settings['enabledOffers']) && 80 $this->settings['enabledOffers'] === 'yes' && 81 isset($this->settings['sandbox']) && 82 $this->settings['sandbox'] === 'no') { 80 83 // External Scripts 81 84 wp_register_script('cf-woocommerce-js', 'https://sdk.cashfree.com/js/widget/1.0.1/cashfree-widget.prod.js', null, null, true ); -
cashfree/trunk/readme.txt
r2891973 r2902806 4 4 Tested up to: 6.2 5 5 Requires PHP: 5.6 6 Stable tag: 4.4. 57 Version: 4.4. 56 Stable tag: 4.4.6 7 Version: 4.4.6 8 8 License: GPLv3 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 33 33 34 34 == Changelog == 35 36 = 4.4.6 = 37 * Bug fixes 35 38 36 39 = 4.4.5 =
Note: See TracChangeset
for help on using the changeset viewer.