Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
drupal.org
better_exposed_filters
Commits
b2e47db4
Commit
b2e47db4
authored
Apr 17, 2020
by
Martin Keereman
Browse files
Issue #3117052 by super_romeo: Notice: Undefined index: value in getExposedFilterWidgetType()
parent
e5d5ed2d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/Plugin/better_exposed_filters/filter/FilterWidgetBase.php
...Plugin/better_exposed_filters/filter/FilterWidgetBase.php
+1
-1
No files found.
src/Plugin/better_exposed_filters/filter/FilterWidgetBase.php
View file @
b2e47db4
...
...
@@ -328,7 +328,7 @@ abstract class FilterWidgetBase extends BetterExposedFiltersWidgetBase implement
/** @var \Drupal\views\Plugin\views\filter\FilterPluginBase $filter */
$filter
->
buildExposedForm
(
$form
,
$form_state
);
return
$form
[
$filter_id
][
'#type'
]
??
$form
[
$filter_id
][
'value'
][
'#type'
];
return
$form
[
$filter_id
][
'#type'
]
??
$form
[
$filter_id
][
'value'
][
'#type'
]
??
''
;
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment