Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #57731


Ignore:
Timestamp:
02/16/2023 11:51:05 AM (3 years ago)
Author:
johnbillion
Comment:

Thank you for the report @aksingla

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #57731

    • Property Keywords needs-testing added
    • Property Focuses administration template rest-api performance coding-standards removed
    • Property Component changed from Query to Users
  • Ticket #57731 – Description

    initial v1  
    1515**If the email does not start with numeric digits**''''
    1616Case 1:
    17   - Email: abc@email.com
     17  - Email: `abc@email.com`
    1818  - User exists with above email
    1919  - Works fine.
     
    2222**If the email starts with numeric digits**''''
    2323Case 2:
    24   - Email: 123abc@email.com
     24  - Email: `123abc@email.com`
    2525  - User exists with the above email
    2626  - Work fine.
    2727
    2828Case 3: (INVALID RESULTS)
    29   - Email: 123abc@email.com
     29  - Email: `123abc@email.com`
    3030  - User DOES NOT exist with the above email
    3131  - **Does not work as intended and returns the user data of the user with ID: 123, instead of returning 0 results**