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
0ebb0a6b
Commit
0ebb0a6b
authored
Jun 08, 2011
by
Mike Keran
Browse files
Fixed merge conflict
parents
8287a38d
49b940e2
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
2 deletions
+11
-2
CHANGELOG.txt
CHANGELOG.txt
+1
-0
better_exposed_filters.module
better_exposed_filters.module
+5
-1
better_exposed_filters_exposed_form_plugin.inc
better_exposed_filters_exposed_form_plugin.inc
+5
-1
No files found.
CHANGELOG.txt
View file @
0ebb0a6b
...
...
@@ -23,6 +23,7 @@ Issue #1042502 by joelstein: Adds highlight class for selected checkboxes
Issue #782480 by mikeker: Fixes concat problem with select-all-none class in Views 2.x
Issue #967510 by tokimeki, mikeker: Fixes issues with radio buttons in block displays and nested displays
Issue #1162488 by klickreflex: Fixes incorrect HTML in nested displays
Issue #1164764 by mikeker: Apply button hidden when using default select list. See issue #1149254.
Issue #1072658 by tkoterwas: Fieldset #title not set in exposed filter block/panel
Better Exposed Filters 6.x-1.0 2010-05-25
...
...
better_exposed_filters.module
View file @
0ebb0a6b
...
...
@@ -241,8 +241,12 @@ function better_exposed_filters_form_alter(&$form, $form_state, $form_id) {
$form
[
$field_id
][
'#theme'
]
=
'select_as_hidden'
;
}
break
;
case
'default'
:
$show_apply
=
TRUE
;
break
;
}
// switch
}
// switch
($filter->options['expose']['bef_format']) {
}
// if (isset($filter->options['expose']['bef_format'])) {
else
{
// This is an exposed filter that is not controled by BEF.
...
...
better_exposed_filters_exposed_form_plugin.inc
View file @
0ebb0a6b
...
...
@@ -351,7 +351,7 @@ class better_exposed_filters_exposed_form_plugin extends views_plugin_exposed_fo
$form
[
$field_id
][
'#options'
]
=
array
();
foreach
(
$opts
as
$index
=>
$opt
)
{
if
(
is_object
(
$opt
))
{
foreach
(
$opt
ion
->
option
as
$key
=>
$val
)
{
foreach
(
$opt
->
option
as
$key
=>
$val
)
{
$form
[
$field_id
][
'#options'
][
$key
]
=
$val
;
}
}
...
...
@@ -432,6 +432,10 @@ class better_exposed_filters_exposed_form_plugin extends views_plugin_exposed_fo
$form
[
$field_id
][
'#theme'
]
=
'select_as_hidden'
;
}
break
;
case
'default'
:
$show_apply
=
TRUE
;
break
;
}
// switch ($options['bef_format'])
}
// foreach ($this->options['bef']...)
...
...
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