Changeset 2975181
- Timestamp:
- 10/05/2023 12:23:45 PM (2 years ago)
- Location:
- cardgate
- Files:
-
- 6 edited
- 1 copied
-
tags/3.1.26 (copied) (copied from cardgate/trunk)
-
tags/3.1.26/cardgate.php (modified) (2 diffs)
-
tags/3.1.26/classes/CGP_Common_Gateway.php (modified) (1 diff)
-
tags/3.1.26/readme.txt (modified) (2 diffs)
-
trunk/cardgate.php (modified) (2 diffs)
-
trunk/classes/CGP_Common_Gateway.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
cardgate/tags/3.1.26/cardgate.php
r2928606 r2975181 7 7 * Author: CardGate 8 8 * Author URI: https://www.cardgate.com 9 * Version: 3.1.2 59 * Version: 3.1.26 10 10 * Text Domain: cardgate 11 11 * Domain Path: /i18n/languages 12 12 * Requires at least: 4.4 13 13 * WC requires at least: 3.0.0 14 * WC tested up to: 7.8.014 * WC tested up to: 8.1.1 15 15 * License: GPLv3 or later 16 16 */ … … 23 23 protected $current_gateway_title = ''; 24 24 protected $current_gateway_extra_charges = ''; 25 protected $current_gateway_extra_charges_type_value = ''; 25 26 protected $plugin_url; 26 27 /** -
cardgate/tags/3.1.26/classes/CGP_Common_Gateway.php
r2781410 r2975181 492 492 'payment_method' => $this->payment_method, 493 493 '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(), 501 501 'status' => 'pending', 502 502 'date_gmt' => date( 'Y-m-d H:i:s' ) -
cardgate/tags/3.1.26/readme.txt
r2928606 r2975181 5 5 Requires at least: 4.4 6 6 Tested up to: 6.2 7 Stable tag: 3.1.2 57 Stable tag: 3.1.26 8 8 License: GPLv3 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 75 75 76 76 == Changelog == 77 78 = 3.1.26 = 79 * Fix: deprecated calls 77 80 78 81 = 3.1.25 = -
cardgate/trunk/cardgate.php
r2928606 r2975181 7 7 * Author: CardGate 8 8 * Author URI: https://www.cardgate.com 9 * Version: 3.1.2 59 * Version: 3.1.26 10 10 * Text Domain: cardgate 11 11 * Domain Path: /i18n/languages 12 12 * Requires at least: 4.4 13 13 * WC requires at least: 3.0.0 14 * WC tested up to: 7.8.014 * WC tested up to: 8.1.1 15 15 * License: GPLv3 or later 16 16 */ … … 23 23 protected $current_gateway_title = ''; 24 24 protected $current_gateway_extra_charges = ''; 25 protected $current_gateway_extra_charges_type_value = ''; 25 26 protected $plugin_url; 26 27 /** -
cardgate/trunk/classes/CGP_Common_Gateway.php
r2781410 r2975181 492 492 'payment_method' => $this->payment_method, 493 493 '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(), 501 501 'status' => 'pending', 502 502 'date_gmt' => date( 'Y-m-d H:i:s' ) -
cardgate/trunk/readme.txt
r2928606 r2975181 5 5 Requires at least: 4.4 6 6 Tested up to: 6.2 7 Stable tag: 3.1.2 57 Stable tag: 3.1.26 8 8 License: GPLv3 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 75 75 76 76 == Changelog == 77 78 = 3.1.26 = 79 * Fix: deprecated calls 77 80 78 81 = 3.1.25 =
Note: See TracChangeset
for help on using the changeset viewer.