Can't access /admin/content/node-type/project-issue

Kars-T - October 12, 2009 - 13:06
Project:Vertical Tabs
Version:6.x-1.x-dev
Component:Code
Category:bug report
Priority:normal
Assigned:Unassigned
Status:duplicate
Description

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

<?php
if (empty($pid)) {
   
drupal_set_message(t('Invalid project selected.'), 'error');
   
drupal_goto('node/add/project-issue');
  }
?>

and
<?php
 
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.

#1

dww - October 12, 2009 - 16:14
Project:Project issue tracking» Vertical Tabs
Version:6.x-1.x-dev» 6.x-1.x-dev
Component:Issues» Code
Status:active» duplicate

Try disabling vertical tabs until #503290: Vertical tabs fieldset configuration breaks horribly for multi-step node forms is fixed.

 
 

Drupal is a registered trademark of Dries Buytaert.