Details
Description
The Order plugin parses user input for a domain name that is given in order to determine the SLD and TLD, e.g.
"domain.com" would result in "domain" as the SLD and ".com" as the TLD
However, there are some cases where the wrong SLD or TLD would be parsed:
"www.domain.co.uk" would result in "domain.co" as the SLD and "www..uk" as the TLD. It should be "domain" as the SLD and ".co.uk" as the TLD.
Another example:
"domain.co.uk" with TLD checks for ".co.uk" and ".com" results in a list of domains:
Domain |
---|
domain.co.co.uk |
domain.co.com |
domain.co.uk |
These should be:
Domain |
---|
domain.co.uk |
domain.com |