Plugin Directory

Changeset 2902806


Ignore:
Timestamp:
04/22/2023 07:19:10 PM (3 years ago)
Author:
devcashfree
Message:

Update to version 4.4.6

Location:
cashfree/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • cashfree/trunk/cashfree.php

    r2891973 r2902806  
    22/**
    33 * Plugin Name: Cashfree
    4  * Version: 4.4.5
     4 * Version: 4.4.6
    55 * Plugin URI: https://github.com/cashfree/cashfree-woocommerce
    66 * Description: Payment gateway plugin by Cashfree Payments for Woocommerce sites.
     
    7777
    7878    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') {
    8083            // External Scripts
    8184            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  
    44Tested up to: 6.2
    55Requires PHP: 5.6
    6 Stable tag: 4.4.5
    7 Version: 4.4.5
     6Stable tag: 4.4.6
     7Version: 4.4.6
    88License: GPLv3
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    3333
    3434== Changelog ==
     35
     36= 4.4.6 =
     37* Bug fixes
    3538
    3639= 4.4.5 =
Note: See TracChangeset for help on using the changeset viewer.