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']);
}