Closed (won't fix)
Project:
Editview
Version:
6.x-1.0-beta1
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Reporter:
Created:
30 Mar 2010 at 02:20 UTC
Updated:
16 Aug 2010 at 20:19 UTC
Just noticed an error in file editview.theme.inc, line 94:
$buttons = '<div class="save-button>"' . drupal_render($form['buttons']['submit']) . '</div>';
Should be: (note the quotes around save-button):
$buttons = '<div class="save-button"></div>' . drupal_render($form['buttons']['submit']) . '</div>';
Mukhsim.
Comments
Comment #1
Frodo Looijaard commentedThe above lines have never been in any revision of editview.theme.inc in CVS.
I suspect these are local customizations.