summaryrefslogtreecommitdiff
path: root/modules/search
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2010-10-09 03:24:46 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2010-10-09 03:24:46 +0000
commitf17797c3fd7f75db32d6968137916ef5f88aa8bf (patch)
tree77a035b1149a2bd70e9f4d5d0b1b263d41f862c1 /modules/search
parent7d0e6716940f0c46f9bc0ebe8bf14f331ca1b821 (diff)
downloadbrdo-f17797c3fd7f75db32d6968137916ef5f88aa8bf.tar.gz
brdo-f17797c3fd7f75db32d6968137916ef5f88aa8bf.tar.bz2
#556284 by jhodgdon: Search form processed_keys default is wrong.
Diffstat (limited to 'modules/search')
-rw-r--r--modules/search/search.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/search/search.module b/modules/search/search.module
index 9ef6e6cc3..27a6d8548 100644
--- a/modules/search/search.module
+++ b/modules/search/search.module
@@ -978,7 +978,7 @@ function search_form($form, &$form_state, $action = '', $keys = '', $type = NULL
);
// processed_keys is used to coordinate keyword passing between other forms
// that hook into the basic search form.
- $form['basic']['processed_keys'] = array('#type' => 'value', '#value' => array());
+ $form['basic']['processed_keys'] = array('#type' => 'value', '#value' => '');
$form['basic']['submit'] = array('#type' => 'submit', '#value' => t('Search'));
return $form;