Changeset 3282607
- Timestamp:
- 04/27/2025 08:08:32 AM (11 months ago)
- Location:
- mustangpay/trunk
- Files:
-
- 3 edited
-
mustangpay.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
-
src/PaymentGateway.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
mustangpay/trunk/mustangpay.php
r3282588 r3282607 4 4 * Plugin URI: https://www.mustangpay.co.za 5 5 * Description: South Africa's trusted payment gateway offering secure card payments and EFT services. 6 * Version: 1.1. 46 * Version: 1.1.5 7 7 * Author: MustangPay 8 8 * Author URI: https://www.mustangpay.co.za/contact-us -
mustangpay/trunk/readme.txt
r3282588 r3282607 5 5 Tested up to: 6.7 6 6 Requires PHP: 7.4 7 Stable tag: 1.1. 47 Stable tag: 1.1.5 8 8 License: GPLv2 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html -
mustangpay/trunk/src/PaymentGateway.php
r3282588 r3282607 676 676 wp_die(__( 'Invalid order ID', 'mustangpay' )); 677 677 } 678 679 $cancelUrl = isset($_GET['cancelUrl']) ? esc_url_raw(wp_unslash($_GET['cancelUrl'])) : '';678 $cancelUrl = isset($_GET['cancelUrl']) ? html_entity_decode($_GET['cancelUrl']) : ''; 679 //$cancelUrl = isset($_GET['cancelUrl']) ? esc_url_raw(wp_unslash($_GET['cancelUrl'])) : ''; 680 680 if (!wp_http_validate_url($cancelUrl)) { 681 681 $this->log($cancelUrl);
Note: See TracChangeset
for help on using the changeset viewer.