Plugin Directory

Changeset 2930835


Ignore:
Timestamp:
06/26/2023 10:36:00 AM (3 years ago)
Author:
Ahaenor
Message:
  • V.3.30.2 - release.
Location:
leyka
Files:
1956 added
4 edited

Legend:

Unmodified
Added
Removed
  • leyka/trunk/README.txt

    r2929590 r2930835  
    77Requires PHP: 7.2.5
    88Tested up to: 6.2.2
    9 Stable tag: 3.30.1
     9Stable tag: 3.30.2
    1010License: GPLv2 or later
    1111License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    8686== Changelog ==
    8787= 3.30.2 =
    88 * Fix: the 2 recently found vulnerabilities are fixed.
     88* Fix: one recently found vulnerability fixed.
    8989* Fix: the CP recurring subscriptions import procedure fixed.
    9090* Fix: different fixes.
  • leyka/trunk/gateways/tinkoff/leyka-class-tinkoff-gateway.php

    r2749154 r2930835  
    471471
    472472    public function has_recurring_support() {
    473         return !!leyka_options()->opt($this->full_id.'_recurring_available');
     473        return !!leyka_options()->opt($this->full_id.'_recurring_available') ? 'active' : false;
    474474    }
    475475
  • leyka/trunk/inc/donations/leyka-class-donations-management.php

    r2916418 r2930835  
    10021002        if( !$donation ) {
    10031003            return false;
     1004        }
     1005
     1006        if( !apply_filters('leyka_send_error_email_notification', true, $donation) ) {
     1007            return true;
    10041008        }
    10051009
  • leyka/trunk/inc/donations/leyka-class-donations.php

    r2791882 r2930835  
    526526                }
    527527
    528                 if(count($values_list) > 1) {
    529                     $params['meta'][] = $values_list;
    530                 }
    531 
     528            }
     529
     530            if(count($values_list) > 1) {
     531                $params['meta'][] = $values_list;
    532532            }
    533533
Note: See TracChangeset for help on using the changeset viewer.