Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
project
drupal
Commits
9c154113
Commit
9c154113
authored
Dec 06, 2007
by
Gábor Hojtsy
Browse files
#194320
by Lynn: search block default value was array() when an empty string was intended
parent
57cedbb5
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/search/search.pages.inc
View file @
9c154113
...
...
@@ -46,7 +46,7 @@ function search_view($type = 'node') {
return
$output
;
}
return
drupal_get_form
(
'search_form'
,
NULL
,
empty
(
$keys
)
?
array
()
:
$keys
,
$type
);
return
drupal_get_form
(
'search_form'
,
NULL
,
empty
(
$keys
)
?
''
:
$keys
,
$type
);
}
/**
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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