Skip to content
Snippets Groups Projects
Commit a4c24891 authored by Liam Morland's avatar Liam Morland Committed by Liam Morland
Browse files

Issue #3183052: Remove non-variable passed by reference

parent c392d9e7
No related branches found
No related tags found
No related merge requests found
......@@ -63,7 +63,7 @@ class LayoutBuilderIdsConfigureBlock implements EventSubscriberInterface {
) {
// Pull out the layout_builder_id from config.
$layout_builder_id = &$event->getFormState()->getFormObject()->getCurrentComponent()->get('layout_builder_id');
$layout_builder_id = $event->getFormState()->getFormObject()->getCurrentComponent()->get('layout_builder_id');
// Add the section id to the configure form.
$form['settings']['layout_builder_id'] = [
......
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