Project:Job Search
Version:6.x-1.x-dev
Component:Code
Category:bug report
Priority:normal
Assigned:Unassigned
Status:postponed (maintainer needs more info)

Issue Summary

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

#1

Version:6.x-1.1» 6.x-1.x-dev
Status:active» postponed (maintainer needs more info)

Please try the -dev version. It has lots of changes, and does not even have that code section.

#2

Why would the dev version be more stable than the released version?

nobody click here