Plugin Directory

Changeset 2975181


Ignore:
Timestamp:
10/05/2023 12:23:45 PM (2 years ago)
Author:
CardGate
Message:

Fix: Deprecated calls

Location:
cardgate
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • cardgate/tags/3.1.26/cardgate.php

    r2928606 r2975181  
    77 * Author: CardGate
    88 * Author URI: https://www.cardgate.com
    9  * Version: 3.1.25
     9 * Version: 3.1.26
    1010 * Text Domain: cardgate
    1111 * Domain Path: /i18n/languages
    1212 * Requires at least: 4.4
    1313 * WC requires at least: 3.0.0
    14  * WC tested up to: 7.8.0
     14 * WC tested up to: 8.1.1
    1515 * License: GPLv3 or later
    1616 */
     
    2323    protected $current_gateway_title = '';
    2424    protected $current_gateway_extra_charges = '';
     25    protected $current_gateway_extra_charges_type_value = '';
    2526    protected $plugin_url;
    2627    /**
  • cardgate/tags/3.1.26/classes/CGP_Common_Gateway.php

    r2781410 r2975181  
    492492            'payment_method'   => $this->payment_method,
    493493            'bank_option'      => $this->bankOption,
    494             'first_name'       => $order->billing_first_name,
    495             'last_name'        => $order->billing_last_name,
    496             'address'          => $order->billing_address_1,
    497             'postal_code'      => $order->billing_postcode,
    498             'city'             => $order->billing_city,
    499             'country'          => $order->billing_country,
    500             'email'            => $order->billing_email,
     494            'first_name'       => $order->get_billing_first_name(),
     495            'last_name'        => $order->get_billing_last_name(),
     496            'address'          => $order->get_billing_address_1(),
     497            'postal_code'      => $order->get_billing_postcode(),
     498            'city'             => $order->get_billing_city(),
     499            'country'          => $order->get_billing_country(),
     500            'email'            => $order->get_billing_email(),
    501501            'status'           => 'pending',
    502502            'date_gmt'         => date( 'Y-m-d H:i:s' )
  • cardgate/tags/3.1.26/readme.txt

    r2928606 r2975181  
    55Requires at least: 4.4
    66Tested up to: 6.2
    7 Stable tag: 3.1.25
     7Stable tag: 3.1.26
    88License: GPLv3 or later
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    7575
    7676== Changelog ==
     77
     78= 3.1.26 =
     79* Fix: deprecated calls
    7780
    7881= 3.1.25 =
  • cardgate/trunk/cardgate.php

    r2928606 r2975181  
    77 * Author: CardGate
    88 * Author URI: https://www.cardgate.com
    9  * Version: 3.1.25
     9 * Version: 3.1.26
    1010 * Text Domain: cardgate
    1111 * Domain Path: /i18n/languages
    1212 * Requires at least: 4.4
    1313 * WC requires at least: 3.0.0
    14  * WC tested up to: 7.8.0
     14 * WC tested up to: 8.1.1
    1515 * License: GPLv3 or later
    1616 */
     
    2323    protected $current_gateway_title = '';
    2424    protected $current_gateway_extra_charges = '';
     25    protected $current_gateway_extra_charges_type_value = '';
    2526    protected $plugin_url;
    2627    /**
  • cardgate/trunk/classes/CGP_Common_Gateway.php

    r2781410 r2975181  
    492492            'payment_method'   => $this->payment_method,
    493493            'bank_option'      => $this->bankOption,
    494             'first_name'       => $order->billing_first_name,
    495             'last_name'        => $order->billing_last_name,
    496             'address'          => $order->billing_address_1,
    497             'postal_code'      => $order->billing_postcode,
    498             'city'             => $order->billing_city,
    499             'country'          => $order->billing_country,
    500             'email'            => $order->billing_email,
     494            'first_name'       => $order->get_billing_first_name(),
     495            'last_name'        => $order->get_billing_last_name(),
     496            'address'          => $order->get_billing_address_1(),
     497            'postal_code'      => $order->get_billing_postcode(),
     498            'city'             => $order->get_billing_city(),
     499            'country'          => $order->get_billing_country(),
     500            'email'            => $order->get_billing_email(),
    501501            'status'           => 'pending',
    502502            'date_gmt'         => date( 'Y-m-d H:i:s' )
  • cardgate/trunk/readme.txt

    r2928606 r2975181  
    55Requires at least: 4.4
    66Tested up to: 6.2
    7 Stable tag: 3.1.25
     7Stable tag: 3.1.26
    88License: GPLv3 or later
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    7575
    7676== Changelog ==
     77
     78= 3.1.26 =
     79* Fix: deprecated calls
    7780
    7881= 3.1.25 =
Note: See TracChangeset for help on using the changeset viewer.