To Reproduce:
1. Create a tld and ensure that the pricing for that tld has a record for which the package_pricing.id and package_pricing.pricing_id do not match.
2. Make sure the package_pricing.pricing_id does not match the package_pricing.id for any other record
3. Create a domain through the admin interface using that tld and price in the pending status
4. Manage the domain through the admin interface and try to activate
5. Receive error "please select a valid term"
To resolve, in plugins/domain/controllers/admin_main.php around line 627 change
if (isset($this->post['module']) && $module->id !== $this->post['module'] && $service->status == 'pending') {
to
if (isset($this->post['module']) && $module->id != $this->post['module'] && $service->status == 'pending') {
and around line 651 change
$this->post['pricing_id'] = $pricing->id;
to
$this->post['pricing_id'] = $pricing->pricing_id;