Active
Project:
Node Images
Version:
6.x-2.x-dev
Component:
User interface
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
25 Nov 2008 at 16:29 UTC
Updated:
25 Nov 2008 at 16:29 UTC
When adding a new image to a node, safari doesn't show the image list and the full columns structure gets disrupted (firefox and iexplorer look fine). This is due to a missing closing div tag in the function theme_node_images_form_upload(&$form), in node_images.pages.inc file:
$output .= '<div style="clear:both;">';
should be
$output .= '<div style="clear:both;"></div>';