Changeset 3243794
- Timestamp:
- 02/20/2025 10:36:25 AM (11 months ago)
- Location:
- amwalpay-for-woocommerce/trunk
- Files:
-
- 4 edited
-
amwalpay-for-woocommerce.php (modified) (2 diffs)
-
changelog.txt (modified) (1 diff)
-
includes/gateway/class-amwalpay-gateway.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
amwalpay-for-woocommerce/trunk/amwalpay-for-woocommerce.php
r3241270 r3243794 4 4 * Plugin Name: AmwalPay for WooCommerce 5 5 * Description: Amwal Credit Card Payment gateway for woocommerce. This plugin supports woocommerce version 3.0.0 or greater version. 6 * Version: 1.0. 16 * Version: 1.0.2 7 7 * Author: AmwalPay Plugin Team 8 8 * Author URI: https://www.amwal-pay.com/ … … 26 26 // Define constants 27 27 if (!defined('AMPR_VERSION')) { 28 define('AMPR_VERSION', '1.0. 1');28 define('AMPR_VERSION', '1.0.2'); 29 29 } 30 30 if (!defined('AMPR_PLUGIN_PATH')) { -
amwalpay-for-woocommerce/trunk/changelog.txt
r3241270 r3243794 2 2 3 3 This file will contains only old changelogs. For newer versions, you can check readme.txt file. 4 5 2025-02-20 - version 1.0.2 6 added new condition in callback 4 7 5 8 2025-02-16 - version 1.0.1 -
amwalpay-for-woocommerce/trunk/includes/gateway/class-amwalpay-gateway.php
r3241270 r3243794 203 203 $integrityParameters['secureHashValueOld'] = AmwalPay::sanitizeVar('secureHashValue'); 204 204 205 if ( $secureHashValue == AmwalPay::sanitizeVar('secureHashValue') && AmwalPay::sanitizeVar('merchantReference') == WC()->session->get('ref_number')) {205 if ((AmwalPay::sanitizeVar('responseCode') === '00' || $secureHashValue == AmwalPay::sanitizeVar('secureHashValue')) && AmwalPay::sanitizeVar('merchantReference') == WC()->session->get('ref_number')) { 206 206 $isPaymentApproved = true; 207 207 } -
amwalpay-for-woocommerce/trunk/readme.txt
r3241270 r3243794 7 7 WC requires at least: 4.0 8 8 WC tested up to: 9.5 9 Stable tag: 1.0. 19 Stable tag: 1.0.2 10 10 License: GPLv3 11 11 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 77 77 78 78 == Changelog == 79 ### 2025-02-16 - version 1.0.1 80 - Fixed the order amount on checkout 81 - made the separate callback 79 ### 2025-02-20 - version 1.0.2 80 - added new condition in callback 82 81 83 82 ---
Note: See TracChangeset
for help on using the changeset viewer.