You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
Environment
Sonata packages
show
Symfony packages
show
PHP version
Subject
Since HttpFoundation
^6.0
,InputBag::get()
must return scalar values.A call to
AbstractAdmin::getFilterParameters()
may return an array.The fix would be to change
$this->getRequest()->query->get('filters')
into$this->getRequest()->query->all('filters')
, which may return an array.The text was updated successfully, but these errors were encountered: