Posted by quinnhigurashi on August 12, 2010 at 6:51am
3 followers
Jump to:
| 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
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?