A typo in the new logic prevents forms being reset. This is a simple fix...

from:
$display_id = ($this->view->display_handler->is_defaulted('filters')) ? 'default' : $this->current_display;

to:
$display_id = ($this->view->display_handler->is_defaulted('filters')) ? 'default' : $this->view->current_display;

(Full patch attached)

CommentFileSizeAuthor
reset-fix.patch862 bytesmcohan
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

dawehner’s picture

Status: Needs review » Fixed

Fix looks fine. Commited to 6.x-3.x
The code is already right in 7.x-3.x.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.