I *think* this is an Emfield issue, not a cck issue as my help text boxes on all other content types are fine and parsing html tags as expected. For embedded video field, I'm seeing:

You need only post the simple video URL:<br>
<i>E.g. http://youtube.com/watch?v=KoppMJ2guKE<br>
http://video.google.com/videoplay?docid=4007016107763801953</i>

all the html tags are showing up. D5 was fine, so something seems to have changed.

Comments

Pete B’s picture

The problem is on emfield.cck.inc, line 173

$textfield_description = t('@description', array('@description' => $field['widget']['description']));

This should be changed to something like:

$textfield_description = t('!description', array('!description' => content_filter_xss($field['widget']['description'])));
aaron’s picture

Component: Embedded Video Field » Code
Status: Active » Fixed

Thanks, Pete, got it now.

Status: Fixed » Closed (fixed)

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