You are here

function onepageprofile_domainignore in One page profile 6

Same name and namespace in other branches
  1. 7 onepageprofile.module \onepageprofile_domainignore()

Implementation of hook_domianignore().

Prevent the domain module from altering the $form['#action'] of the profile forms as they are added to the user form.

File

./onepageprofile.module, line 248

Code

function onepageprofile_domainignore() {
  return array(
    'profile_form_profile',
  );
}