You are here

function domain_domainignore in Domain Access 6.2

Same name and namespace in other branches
  1. 7.2 domain.module \domain_domainignore()

Implement hook_domainignore().

File

./domain.module, line 2665
Core module functions for the Domain Access suite.

Code

function domain_domainignore() {

  // In Drupal 6, the update script behaves differently than D5, so we ignore it.
  return array(
    'update_script_selection_form',
  );
}