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

dww’s picture

Project: Project issue tracking » Vertical Tabs
Component: Issues » Code
Status: Active » Closed (duplicate)