Skip to content
Snippets Groups Projects
Commit bb7404d3 authored by Angie Byron's avatar Angie Byron
Browse files

Issue #2067541 by jlindsey15: Fixed Remove Unused local variable from...

Issue #2067541 by jlindsey15: Fixed Remove Unused local variable  from /core/modules/views/lib/Drupal/views/ViewStorageController.php.
parent 4784baff
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
...@@ -34,7 +34,7 @@ public function loadMultiple(array $ids = NULL) { ...@@ -34,7 +34,7 @@ public function loadMultiple(array $ids = NULL) {
* {@inheritdoc} * {@inheritdoc}
*/ */
protected function attachLoad(&$queried_entities, $revision_id = FALSE) { protected function attachLoad(&$queried_entities, $revision_id = FALSE) {
foreach ($queried_entities as $id => $entity) { foreach ($queried_entities as $entity) {
$entity->mergeDefaultDisplaysOptions(); $entity->mergeDefaultDisplaysOptions();
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment