Changeset 3440793
- Timestamp:
- 01/16/2026 07:11:59 AM (3 months ago)
- Location:
- payhere-payment-gateway-beta
- Files:
-
- 70 added
- 3 edited
-
tags/2.5.2 (added)
-
tags/2.5.2/LICENSE.txt (added)
-
tags/2.5.2/admin (added)
-
tags/2.5.2/admin/class-payhere-custom-admin-settings-type.php (added)
-
tags/2.5.2/admin/class-payhereadmin.php (added)
-
tags/2.5.2/admin/css (added)
-
tags/2.5.2/admin/css/payhere-customer-list-settings.css (added)
-
tags/2.5.2/admin/css/payhere-ipg-admin.css (added)
-
tags/2.5.2/admin/images (added)
-
tags/2.5.2/admin/images/ajax-loader.gif (added)
-
tags/2.5.2/admin/images/cards.png (added)
-
tags/2.5.2/admin/images/favicon.png (added)
-
tags/2.5.2/admin/index.php (added)
-
tags/2.5.2/admin/js (added)
-
tags/2.5.2/admin/js/payhere-admin-capture.js (added)
-
tags/2.5.2/admin/js/payhere-ipg-admin-image-selection.js (added)
-
tags/2.5.2/admin/js/payhere-ipg-admin.js (added)
-
tags/2.5.2/admin/partials (added)
-
tags/2.5.2/admin/partials/order-auth-payment.php (added)
-
tags/2.5.2/admin/partials/plugin-payhere-ipg-display.php (added)
-
tags/2.5.2/block (added)
-
tags/2.5.2/block/class-payhere-block-loader.php (added)
-
tags/2.5.2/block/class-payhere-woocommerce-block-checkout.php (added)
-
tags/2.5.2/gateway (added)
-
tags/2.5.2/gateway/class-chargepayment.php (added)
-
tags/2.5.2/gateway/class-gatewayutilities.php (added)
-
tags/2.5.2/gateway/class-payherecapturepayment.php (added)
-
tags/2.5.2/gateway/class-payhereorderutilities.php (added)
-
tags/2.5.2/gateway/class-payheretoken.php (added)
-
tags/2.5.2/gateway/class-subscriptionrestrictions.php (added)
-
tags/2.5.2/gateway/class-wcgatewaypayhere.php (added)
-
tags/2.5.2/includes (added)
-
tags/2.5.2/includes/class-payhere-activator.php (added)
-
tags/2.5.2/includes/class-payhere-deactivator.php (added)
-
tags/2.5.2/includes/class-payhere-i18n.php (added)
-
tags/2.5.2/includes/class-payhere-loader.php (added)
-
tags/2.5.2/includes/class-payhere.php (added)
-
tags/2.5.2/includes/class-phcustomerlistoptions.php (added)
-
tags/2.5.2/includes/class-phcustomerslist.php (added)
-
tags/2.5.2/includes/index.php (added)
-
tags/2.5.2/index.php (added)
-
tags/2.5.2/languages (added)
-
tags/2.5.2/languages/payhere-ipg.pot (added)
-
tags/2.5.2/payhere-payment-gateway-beta.php (added)
-
tags/2.5.2/public (added)
-
tags/2.5.2/public/class-payhere-public.php (added)
-
tags/2.5.2/public/css (added)
-
tags/2.5.2/public/css/payhere-checkout-styles.css (added)
-
tags/2.5.2/public/css/payhere-ipg-public.css (added)
-
tags/2.5.2/public/images (added)
-
tags/2.5.2/public/images/check.svg (added)
-
tags/2.5.2/public/images/favicon.png (added)
-
tags/2.5.2/public/images/helapay.png (added)
-
tags/2.5.2/public/images/master.png (added)
-
tags/2.5.2/public/images/payhere_long_banner.png (added)
-
tags/2.5.2/public/images/visa.png (added)
-
tags/2.5.2/public/index.php (added)
-
tags/2.5.2/public/js (added)
-
tags/2.5.2/public/js/payhere-block.js (added)
-
tags/2.5.2/public/js/payhere-checkout-auth.js (added)
-
tags/2.5.2/public/js/payhere-checkout-sale.js (added)
-
tags/2.5.2/public/js/payhere-ipg-public.js (added)
-
tags/2.5.2/public/js/payhere-my-account.js (added)
-
tags/2.5.2/public/partials (added)
-
tags/2.5.2/public/partials/checkout-form-auth.php (added)
-
tags/2.5.2/public/partials/checkout-form-sale.php (added)
-
tags/2.5.2/public/partials/payhere-ipg-public-display.php (added)
-
tags/2.5.2/public/partials/remove-card.php (added)
-
tags/2.5.2/readme.txt (added)
-
tags/2.5.2/uninstall.php (added)
-
trunk/gateway/class-wcgatewaypayhere.php (modified) (1 diff)
-
trunk/payhere-payment-gateway-beta.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
payhere-payment-gateway-beta/trunk/gateway/class-wcgatewaypayhere.php
r3343482 r3440793 843 843 if (('completed' !== $order->get_status() && !$is_subscription) || ($is_subscription)) { 844 844 845 if (!$verified && floatval($payhere_amount) === floatval($order_amount) &&$payhere_currency === $order_currncy) {845 if (!$verified || floatval($payhere_amount) === floatval($order_amount) || $payhere_currency === $order_currncy) { 846 846 $this->msg['class'] = 'error'; 847 847 $this->msg['message'] = 'Security Error. Illegal access detected.'; -
payhere-payment-gateway-beta/trunk/payhere-payment-gateway-beta.php
r3343482 r3440793 7 7 * Plugin Name: PayHere Payment Gateway - Beta 8 8 * Description: This is a beta version of the PayHere Payment Gateway and is recommended for use in a development environment. 9 * Version: 2.5. 19 * Version: 2.5.2 10 10 * Author: PayHere (Private) Limited 11 11 * Author URI: https://www.payhere.lk … … 27 27 * Start at version 2.0.0 and use SemVer - https://semver.org 28 28 */ 29 define('PAYHERE_VERSION', '2.5. 1');29 define('PAYHERE_VERSION', '2.5.2'); 30 30 /** 31 31 * Currently plugin text domain. -
payhere-payment-gateway-beta/trunk/readme.txt
r3343482 r3440793 6 6 Tested up to: 6.7.2 7 7 WC tested up to: 9.6.0 8 Stable tag: 2.5. 18 Stable tag: 2.5.2 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 44 44 = 2.5.1 = 45 45 Bug Fixes 46 47 = 2.5.2 = 48 Bug fixes and security enhancements. 46 49 47 50 == Frequently Asked Questions ==
Note: See TracChangeset
for help on using the changeset viewer.