Active
Project:
Create from Web
Version:
6.x-1.3
Component:
Code
Priority:
Normal
Category:
Feature request
Assigned:
Unassigned
Reporter:
Created:
26 Nov 2010 at 16:13 UTC
Updated:
26 Nov 2010 at 16:15 UTC
I had to adjust a small part of the code to make (imho) work as intended.
(near line 337)
// check on duplicates by title
$node = node_load(array('title'=>$title));
(to)
// check on duplicates by title
$node = node_load(array('title'=>$title,'type'=>$node_type));
Comments
Comment #1
brevity commentedThank you very much! Looks better, yes ;)