function onepageprofile_domainignore in One page profile 7
Same name and namespace in other branches
- 6 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 162
Code
function onepageprofile_domainignore() {
return array(
'profile_form_profile',
);
}