Closed (fixed)
Project:
Content Construction Kit (CCK)
Version:
7.x-3.x-dev
Component:
upgrade path
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
20 Jun 2012 at 16:46 UTC
Updated:
25 Dec 2013 at 18:40 UTC
Jump to comment: Most recent, Most recent file
Comments
Comment #1
mrded commentedmy patch
Comment #2
greggmarshallPatch was a couple of lines off on my copy, but manually adding the one line of code in the patch worked for me.
Comment #3
abrao commentedThis bug is caused by the undefined variable $node in content_migrate.admin.inc (Line 366) and can be fixed by commenting out that line.
// $query->addExpression("'". $node['type'] ."'", 'bundle');
At some point in April (commit 26099e5) a performance patch was applied. The variable $node that was created prior to this line was removed, but they forgot to remove the reference to $node in the above line. So $node is basically not set prior to this.
The bundle will be set correctly on line 390 ($query->addExpression("'". $node['type'] ."'", 'bundle');), once $node is set.
Comment #4
jcisio commentedThis is a simpler one.
Comment #5
jcisio commentedRTBC because of #3 (I didn't see it yesterday).
Comment #6
brad.bulger commentedwill this ever be fixed?
Comment #7
colanThanks! Committed in 9a2cf4c.