I found a little typo. Where '\n' should be but only '\'.
line 672 on job.module,
$body .= t("\Application: @title", array('@title' => $resume_node->title));
$body .= t("\Application URL: @url", array('@url' => $base_url . url("node/$resume_node->nid")));
should be
$body .= t("\nApplication: @title", array('@title' => $resume_node->title));
$body .= t("\nApplication URL: @url", array('@url' => $base_url . url("node/$resume_node->nid")));
Comments
Comment #1
kbahey commentedPlease try the -dev version. It has lots of changes, and does not even have that code section.
Comment #2
vako commentedWhy would the dev version be more stable than the released version?
Comment #3
xamount