Changeset 2838415
- Timestamp:
- 12/23/2022 10:06:18 AM (3 years ago)
- Location:
- app360/trunk
- Files:
-
- 3 edited
-
app360.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
rest_api.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
app360/trunk/app360.php
r2823396 r2838415 11 11 * Plugin URI: https://www.app360.my/ 12 12 * Description: App360 CRM allows the integration between WooCommerce and App360 13 * Version: 1.3. 913 * Version: 1.3.10 14 14 * Author: App360 15 15 * License: GPLv2 or later -
app360/trunk/readme.txt
r2823396 r2838415 4 4 Requires at least: 5.6 5 5 Tested up to: 5.8 6 Stable tag: 1.3. 96 Stable tag: 1.3.10 7 7 License: GPLv2 or later 8 8 … … 39 39 == Changelog == 40 40 41 = 1.3.10 = 42 *Release Date - 23 December 2022* 43 44 * bugfix | Set custom rest api /app360/customer/change_password signature generation to use date that generated under Asia/Kuala_Lumpur timezone 45 41 46 = 1.3.9 = 42 47 *Release Date - 22 November 2022* -
app360/trunk/rest_api.php
r2788067 r2838415 47 47 48 48 $signature_plain = get_option('app360_api').'|'; 49 $signature_plain .= date ('Ymd').'|';49 $signature_plain .= date_format(date_create(NULL, timezone_open("Asia/Kuala_Lumpur")), 'Ymd').'|'; 50 50 $signature_plain .= base64_encode($user_id.':'.$new_password).'|'; 51 51
Note: See TracChangeset
for help on using the changeset viewer.