Setup:
content type "A" with a date and a dropdown.
content type "B" with a flexifield based on content type A. Unlimited number of values.

Result:
The module appears to be outputting an extra div close tag at the end (or perhaps one two few div open tags). This is breaking my cusom theme.

Temporary workaround for my site: Add another div open tag to line 89 of flexifield-widget.inc:
$aElement['#prefix'] = '

';

Comments

3oheme’s picture

We are getting the same issue :-(

3oheme’s picture

rfoster, thanks for the tip!

We have currently fixed just adding a new div in that line, so instead of having a:

89      $aElement['#prefix'] = '<div id="'. $sId .'-items">';

We should have something like:

89      $aElement['#prefix'] = '<div id="'. $sId .'-items"><div>';

And this will solve the bug :-D