Details
-
Type: Bug
-
Status: Closed
-
Priority: Major
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: 5.9.0-b1
-
Component/s: None
-
Labels:None
Description
To reproduce:
- Create a domain
- Go to the settings tab on the service
- Enable the registrar lock
- Attempt to disable the registrar lock
- See that it fails
Possible solution:
in components/modules/connectreseller/connectreseller.php around line 1494 change:
if (!empty($post['registrarlock'])) {
To
if (array_key_exists('registrarlock', $post)) {