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

Frodo Looijaard’s picture

Assigned: Unassigned » Frodo Looijaard
Status: Active » Closed (won't fix)

The above lines have never been in any revision of editview.theme.inc in CVS.
I suspect these are local customizations.