Plugin Directory

Changeset 2520937


Ignore:
Timestamp:
04/25/2021 06:02:56 AM (5 years ago)
Author:
idofri
Message:

new version-20210425

Location:
woo-pelecard-gateway/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • woo-pelecard-gateway/trunk/includes/Gateway.php

    r2466033 r2520937  
    405405
    406406        $display_cards = (array) $this->get_option( 'supported_cards', [] );
    407         foreach ( $display_cards as $card ) {
    408             $all_cards[ $card ] = true;
     407        foreach ( array_keys( $supported_cards ) as $card ) {
     408            $supported_cards[ $card ] = in_array( $card, $display_cards );
    409409        }
    410410
  • woo-pelecard-gateway/trunk/includes/Plugin.php

    r2467432 r2520937  
    1818     * @var string $version
    1919     */
    20     public static $version = '1.4.3';
     20    public static $version = '1.4.4';
    2121
    2222    /**
  • woo-pelecard-gateway/trunk/readme.txt

    r2467432 r2520937  
    33Tags: e-commerce, payments, gateway, checkout, pelecard, invoices, woo commerce, subscriptions
    44Requires at least: 5.3
    5 Tested up to: 5.6
    6 Stable tag: 1.4.3
     5Tested up to: 5.7
     6Stable tag: 1.4.4
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    5555
    5656== Changelog ==
     57
     58= 1.4.4 =
     59* Fixed supported CC field.
    5760
    5861= 1.4.3 =
  • woo-pelecard-gateway/trunk/woocommerce-pelecard-gateway.php

    r2475815 r2520937  
    44 * Plugin URI: https://wordpress.org/plugins/woo-pelecard-gateway/
    55 * Description: Extends WooCommerce with Pelecard payment gateway.
    6  * Version: 1.4.3
     6 * Version: 1.4.4
    77 * Author: Ido Friedlander
    88 * Author URI: https://profiles.wordpress.org/idofri/
     
    1212 *
    1313 * WC requires at least: 3.0
    14  * WC tested up to: 5.0
     14 * WC tested up to: 5.2
    1515 */
    1616
Note: See TracChangeset for help on using the changeset viewer.