hook_domainignore()
API.php, line 476
Return an array of forms for which we cannot run hook_form_alter().
An array of form ids that should not run through domain_form_alter.
function hook_domainignore() {
// User login should always be from the current domain.
return array('user_login');
}