Skip to content
Snippets Groups Projects
Commit ca8671d8 authored by Demian Katz's avatar Demian Katz
Browse files

Avoid invalid value in foreach.

parent 1ca5977b
No related merge requests found
......@@ -615,7 +615,7 @@ class MyResearchController extends AbstractBase
*/
protected function processEditSubmit($user, $driver, $listID)
{
$lists = $this->params()->fromPost('lists');
$lists = $this->params()->fromPost('lists', []);
$tagParser = $this->serviceLocator->get('VuFind\Tags');
$favorites = $this->serviceLocator
->get('VuFind\Favorites\FavoritesService');
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment