$node is node defined in the function type_local_nids_node_type:
case 'delete':
db_query("
DELETE FROM {node_lnid_next}
WHERE type = '%s'
",
$node->type
);
break;
You probably want $info->type like further down.
$node is node defined in the function type_local_nids_node_type:
case 'delete':
db_query("
DELETE FROM {node_lnid_next}
WHERE type = '%s'
",
$node->type
);
break;
You probably want $info->type like further down.
Comments
Comment #1
jbrown commentedhttp://drupal.org/cvs?commit=202684
Thanks joachim