Active
Project:
RDF SPARQL Proxy
Version:
6.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
18 May 2010 at 22:50 UTC
Updated:
18 May 2010 at 22:50 UTC
In the .module file, this:
if (isset($values['body']) && $values['body']) {
$node->title = $values['body'];
unset($values['body']);
}
should probably be this:
if (isset($values['body']) && $values['body']) {
$node->body = $values['body'];
unset($values['body']);
}