Details
-
Type: Bug
-
Status: Closed
-
Priority: Major
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: 5.10.1
-
Component/s: None
-
Labels:None
Description
To reproduce:
- Install and configure namecheap
- Start adding a package
- Select namecheap
- See a list of tlds with each repeated 3 times
To resolve:
In components/modules/namecheap around line 1649 change:
if (!isset($tlds[$tld])) {
$tlds[] = $tld;
}
to
if (!isset($tlds[$tld])) {
$tlds[$tld] = $tld;
}