ImportrunController: no need to enforce filters

(as filter editor is not in place here, not yet)
This commit is contained in:
Thomas Gelf 2015-12-02 04:24:20 +01:00
parent f962fb631a
commit 9d25418573
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ class ImportrunController extends ActionController
$this->db()->getImportrunRowsetChecksum($this->params->get('id'))
);
$this->view->table = $this->applyPaginationLimits($table);
$this->view->table->enforceFilter('id', $this->params->shift('id'));
//$this->view->table->enforceFilter('id', $this->params->shift('id'));
// $this->view->filterEditor = $table->getFilterEditor($this->getRequest());
$this->render('list/table', null, true);
}