Closed (fixed)
Project:
Add Another
Version:
6.x-1.5
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
12 Apr 2010 at 19:27 UTC
Updated:
3 May 2010 at 00:30 UTC
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