In D6 (v6.10 at least) there is no hook_profile_final() so the documentation should say:
function foo_profile_tasks(&$task, $url) {
if ($task == 'profile') {
install_include(foo_profile_modules());
// Whatever else you need to do...
}
}
In D6 (v6.10 at least) there is no hook_profile_final() so the documentation should say:
function foo_profile_tasks(&$task, $url) {
if ($task == 'profile') {
install_include(foo_profile_modules());
// Whatever else you need to do...
}
}
Comments
Comment #1
dwwFixed that line in and the english instructions above it to match. Committed to DRUPAL-6--2. Thanks.