NewObjectsController: pass dummy object to...

...provideFilterEditorForTable()

fixes #13597
This commit is contained in:
Marc DeTrano 2016-12-14 23:58:33 +01:00 committed by Thomas Gelf
parent 15b031272e
commit 66ece6010d
1 changed files with 2 additions and 2 deletions

View File

@ -127,7 +127,7 @@ abstract class NewObjectsController extends ActionController
)
);
$this->provideFilterEditorForTable($table);
$this->provideFilterEditorForTable($table, $dummy);
$this->getTabs()->activate('sets');
$this->setViewScript('objects/table');
}
@ -202,7 +202,7 @@ abstract class NewObjectsController extends ActionController
}
}
$this->provideFilterEditorForTable($table);
$this->provideFilterEditorForTable($table, $dummy);
$this->setViewScript('objects/table');
return $this;