From 95e911732537e3dea9dc9888e592f1834bf429ae Mon Sep 17 00:00:00 2001 From: Eric Lippmann Date: Wed, 4 Sep 2013 18:21:10 +0200 Subject: [PATCH] Fix SortBox not keeping Sort By input after submission --- library/Icinga/Web/Widget/SortBox.php | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/library/Icinga/Web/Widget/SortBox.php b/library/Icinga/Web/Widget/SortBox.php index 287a1f1f6..2b2c9051a 100644 --- a/library/Icinga/Web/Widget/SortBox.php +++ b/library/Icinga/Web/Widget/SortBox.php @@ -144,18 +144,16 @@ class SortBox implements Widget $form->setName($this->name); $form->addElement( 'select', - 'sort_' . $this->name, + 'sort', array( - 'name' => 'sort', 'label' => 'Sort By', 'multiOptions' => $this->sortFields ) ); $form->addElement( 'select', - 'dir_' . $this->name, + 'dir', array( - 'name' => 'dir', 'multiOptions' => array( 'desc' => 'Desc', 'asc' => 'Asc' @@ -164,7 +162,7 @@ class SortBox implements Widget ) ); - $form->enableAutoSubmit(array('sort_' . $this->name, 'dir_' . $this->name)); + $form->enableAutoSubmit(array('sort', 'dir')); $form->addElement($this->createFallbackSubmitButton()); if ($this->request) {