The job description textarea field is not 'seen' as a textarea that can be edited using the new WYSIWYG editor. This is, because the WYSIWYG module detects textarea by their 'Input format' element, which is named 'format' in regular Drupal nodes. In Job_Posting, though, it is called 'filter'.

So, to make a WYSIWYG editor appear in the job description text area, I modified this:

Line: 304
Old code:
$form['required']['body_filter']['filter'] = filter_form($node->format);
New code:
$form['required']['body_filter']['format'] = filter_form($node->format);

Hope this can be included in the official code so I can update job_posting with new releases? Thanks!

Comments

gmarus’s picture

Thanks for the report and patch. Your fix has been committed to HEAD and the branches so it will appear in the daily dev snapshots (whenever they get updated) as well as future releases. Thanks again.

gmarus’s picture

Status: Needs review » Fixed

changing status to 'fixed'

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.