When I create a field, I type in an "Explanation" (i.e. helper text to be shown to the user when filling out the field), but when the user is filling out the field, the explanation text doesn't show. Can anyone else reproduce this?

p.s. The module is awesome. Solved a gigantic problem for me.

CommentFileSizeAuthor
#1 profile_pictures.patch434 bytesyeputons
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

yeputons’s picture

FileSize
434 bytes

Thank you for report. It's a real bug.
Quick patch (for all versions): change line 64 in profile_pictures.module from

           '#description' => $field->description ? t($field->description) : '',

to

           '#description' => $field->explanation ? t($field->explanation) : '',

CVS patch is attached. Please report wheither it helped you.

yeputons’s picture

Status: Active » Needs review
jenna.tollerson’s picture

Applied the patch, explanation text appeared. Excellent!

yeputons’s picture

Status: Needs review » Fixed

Fixed #855416: Explanation doesn't show in UI by yeputons (reported by jenna.tollerson): explanation doesn't show in UI:
Explanation is stored in $field->explanation, not $field->description. Changed.

Status: Fixed » Closed (fixed)

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