Changeset 3143272
- Timestamp:
- 08/28/2024 11:29:25 PM (19 months ago)
- Location:
- openpay-cards/trunk
- Files:
-
- 4 edited
-
lib/openpay/Openpay/Data/OpenpayApiConnector.php (modified) (1 diff)
-
openpay_cards.php (modified) (1 diff)
-
openpay_cards_gateway.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
openpay-cards/trunk/lib/openpay/Openpay/Data/OpenpayApiConnector.php
r3120815 r3143272 51 51 if(is_null($publicIp)){ 52 52 throw new OpenpayApiAuthError("Empty or no public ip provided"); 53 } else if (! preg_match("/^([0-9]{1,3}\.){3}[0-9]{1,3}$/", $publicIp)){53 } else if (!filter_var($publicIp, FILTER_VALIDATE_IP)){ 54 54 throw new OpenpayApiAuthError("Invalid public ip '" . $publicIp . "'"); 55 55 } -
openpay-cards/trunk/openpay_cards.php
r3143269 r3143272 5 5 * Plugin URI: http://www.openpay.mx/docs/plugins/woocommerce.html 6 6 * Description: Provides a credit card payment method with Openpay for WooCommerce. 7 * Version: 2.9. 57 * Version: 2.9.6 8 8 * Author: Openpay 9 9 * Author URI: http://www.openpay.mx -
openpay-cards/trunk/openpay_cards_gateway.php
r3143269 r3143272 987 987 $ipAdress = $_SERVER['REMOTE_ADDR']; 988 988 } 989 $this->logger->debug('IP IN HEADER: ' . $ipAdress); 989 990 $ipAdress = trim(explode(",", $ipAdress)[0]); 990 991 return $ipAdress; -
openpay-cards/trunk/readme.txt
r3143269 r3143272 3 3 Tags: payment gateway, openpay 4 4 Requires at least: 4.8 5 Tested up to: 6. 4.35 Tested up to: 6.6.1 6 6 Requires PHP: 5.9 7 Stable tag: 2.9. 57 Stable tag: 2.9.6 8 8 License: GNU General Public License v3.0 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 17 17 18 18 == Changelog == 19 = 2.9.6 = 20 * Fix. Soporte de transaccionalidad IPv6 19 21 = 2.9.5 = 20 22 * Enhancement. Actualización en validación de CVV para tarjetas guardadas.
Note: See TracChangeset
for help on using the changeset viewer.