Closed (duplicate)
Project:
Vertical Tabs
Version:
6.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
12 Oct 2009 at 13:06 UTC
Updated:
12 Oct 2009 at 16:14 UTC
I wanted to change the comment settings for the issue and do always get a redirect every time I try to access /admin/content/node-type/project-issue
This is because of the function _project_issue_form
if (empty($pid)) {
drupal_set_message(t('Invalid project selected.'), 'error');
drupal_goto('node/add/project-issue');
}
and
if ($project->type != 'project_project') {
drupal_set_message(t('Invalid project selected.'), 'error');
// Not sure the best place to go here...
drupal_goto('node/add/project-issue');
}
Right now I made both drupal_goto comments and I get both messages but the page works.
Comments
Comment #1
dwwTry disabling vertical tabs until #503290: Vertical tabs fieldset configuration breaks horribly for multi-step node forms is fixed.