Details
-
Type:
Improvement
-
Status: Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: 5.9.0-b2
-
Component/s: None
-
Labels:None
Description
Right now the method is this:
public function checkTransferAvailability($domain, $module_row_id = null)
{
return true;
}
It would be better as
public function checkTransferAvailability($domain, $module_row_id = null)
{
return !$this->checkAvailability($domain, $module_row_id);
}