From 0f65d18168d66d552dcffaf8c66ce5a0f79a7a5a Mon Sep 17 00:00:00 2001 From: Thomas Gelf Date: Mon, 14 Sep 2015 16:25:43 +0200 Subject: [PATCH] Importrun: do not show filter for now --- application/controllers/ImportrunController.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/application/controllers/ImportrunController.php b/application/controllers/ImportrunController.php index 057198cc..e2bb0688 100644 --- a/application/controllers/ImportrunController.php +++ b/application/controllers/ImportrunController.php @@ -19,7 +19,8 @@ class Director_ImportrunController extends ActionController $this->db()->getImportrunRowsetChecksum($this->params->get('id')) ); $this->view->table = $this->applyPaginationLimits($table); - $this->view->filterEditor = $table->getFilterEditor($this->getRequest()); + $this->view->table->enforceFilter('id', $this->params->shift('id')); + // $this->view->filterEditor = $table->getFilterEditor($this->getRequest()); $this->render('list/table', null, true); } }