diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-03-15 18:51:28 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-03-15 18:51:28 +0000 |
commit | dee6cb3e57a38d1f6e575a879e6455269147a249 (patch) | |
tree | 4de9c6e69786adbfeb3cb0aba93aa3e40b7824f6 | |
parent | 72b4442af450573e26e9835edbae05fccf938ce8 (diff) | |
download | brdo-dee6cb3e57a38d1f6e575a879e6455269147a249.tar.gz brdo-dee6cb3e57a38d1f6e575a879e6455269147a249.tar.bz2 |
#356359 by mgifford and nfreear: Resolve accessibility failures in search form.
-rw-r--r-- | modules/search/search.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/search/search.module b/modules/search/search.module index 018c5c7ab..21a3657df 100644 --- a/modules/search/search.module +++ b/modules/search/search.module @@ -1071,7 +1071,7 @@ function search_form(&$form_state, $action = '', $keys = '', $type = NULL, $prom '#attributes' => array('class' => 'search-form'), ); $form['module'] = array('#type' => 'value', '#value' => $type); - $form['basic'] = array('#type' => 'item', '#title' => $prompt); + $form['basic'] = array('#type' => 'item', '#title' => $prompt, '#id' => 'edit-keys'); $form['basic']['inline'] = array('#prefix' => '<div class="container-inline">', '#suffix' => '</div>'); $form['basic']['inline']['keys'] = array( '#type' => 'textfield', |