Plugin Directory

Changeset 2838415


Ignore:
Timestamp:
12/23/2022 10:06:18 AM (3 years ago)
Author:
app360my
Message:

1.3.10

  • bugfix | Set custom rest api /app360/customer/change_password signature generation to use date that generated under Asia/Kuala_Lumpur timezone
Location:
app360/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • app360/trunk/app360.php

    r2823396 r2838415  
    1111 * Plugin URI: https://www.app360.my/
    1212 * Description: App360 CRM allows the integration between WooCommerce and App360
    13  * Version: 1.3.9
     13 * Version: 1.3.10
    1414 * Author: App360
    1515 * License: GPLv2 or later
  • app360/trunk/readme.txt

    r2823396 r2838415  
    44Requires at least: 5.6
    55Tested up to: 5.8
    6 Stable tag: 1.3.9
     6Stable tag: 1.3.10
    77License: GPLv2 or later
    88
     
    3939== Changelog ==
    4040
     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
    4146= 1.3.9 =
    4247*Release Date - 22 November 2022*
  • app360/trunk/rest_api.php

    r2788067 r2838415  
    4747
    4848    $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').'|';
    5050    $signature_plain .= base64_encode($user_id.':'.$new_password).'|';
    5151
Note: See TracChangeset for help on using the changeset viewer.