In addanother.module, line 84,
drupal_goto('node/add/'. $node->type);
Shouldn't it be:
drupal_goto('node/add/'. str_replace('_', '-', $node->type));
For some reason, the tabs were going to node/add/content_type
instead of node/add/content-type
In addanother.module, line 84,
drupal_goto('node/add/'. $node->type);
Shouldn't it be:
drupal_goto('node/add/'. str_replace('_', '-', $node->type));
For some reason, the tabs were going to node/add/content_type
instead of node/add/content-type
Comments
Comment #1
robin monks commentedFixed in 6.x-1.6; thanks for reporting this issue!
--Robin