Details
- 
        Type:
 Bug
            
         - 
        Status: Closed
 - 
            Priority:
 Major
                
             - 
            Resolution: Fixed
 - 
            Affects Version/s: None
 - 
            Fix Version/s: 5.11.1
 - 
            Component/s: None
 - 
            Labels:None
 
Description
To reproduce:
- Create a tld using logicboxes
 - Start creating a new domain through the admin interface
 - Uncheck "Provision the domain using the registrar module when activated"
 - Try to create the domain
 - Receive error "Required parameter missing: domain-name"
 
To resolve update components/module/logicboxes.php around line 415 from
                $order = array_intersect_key($vars, ['domain-name' => '']);
To
                $vars['domain-name'] = $vars['domain'] ?? '';
                $order = array_intersect_key($vars, ['domain-name' => '']);