Changeset 2520937
- Timestamp:
- 04/25/2021 06:02:56 AM (5 years ago)
- Location:
- woo-pelecard-gateway/trunk
- Files:
-
- 4 edited
-
includes/Gateway.php (modified) (1 diff)
-
includes/Plugin.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
woocommerce-pelecard-gateway.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
woo-pelecard-gateway/trunk/includes/Gateway.php
r2466033 r2520937 405 405 406 406 $display_cards = (array) $this->get_option( 'supported_cards', [] ); 407 foreach ( $display_cardsas $card ) {408 $ all_cards[ $card ] = true;407 foreach ( array_keys( $supported_cards ) as $card ) { 408 $supported_cards[ $card ] = in_array( $card, $display_cards ); 409 409 } 410 410 -
woo-pelecard-gateway/trunk/includes/Plugin.php
r2467432 r2520937 18 18 * @var string $version 19 19 */ 20 public static $version = '1.4. 3';20 public static $version = '1.4.4'; 21 21 22 22 /** -
woo-pelecard-gateway/trunk/readme.txt
r2467432 r2520937 3 3 Tags: e-commerce, payments, gateway, checkout, pelecard, invoices, woo commerce, subscriptions 4 4 Requires at least: 5.3 5 Tested up to: 5. 66 Stable tag: 1.4. 35 Tested up to: 5.7 6 Stable tag: 1.4.4 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 55 55 56 56 == Changelog == 57 58 = 1.4.4 = 59 * Fixed supported CC field. 57 60 58 61 = 1.4.3 = -
woo-pelecard-gateway/trunk/woocommerce-pelecard-gateway.php
r2475815 r2520937 4 4 * Plugin URI: https://wordpress.org/plugins/woo-pelecard-gateway/ 5 5 * Description: Extends WooCommerce with Pelecard payment gateway. 6 * Version: 1.4. 36 * Version: 1.4.4 7 7 * Author: Ido Friedlander 8 8 * Author URI: https://profiles.wordpress.org/idofri/ … … 12 12 * 13 13 * WC requires at least: 3.0 14 * WC tested up to: 5. 014 * WC tested up to: 5.2 15 15 */ 16 16
Note: See TracChangeset
for help on using the changeset viewer.