Posted by robertgarrigos on November 25, 2008 at 4:29pm
| Project: | Node Images |
| Version: | 6.x-2.x-dev |
| Component: | User interface |
| Category: | bug report |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | active |
Issue Summary
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>';