Index: context.core.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/context/Attic/context.core.inc,v
retrieving revision 1.1.2.3.2.20
diff -r1.1.2.3.2.20 context.core.inc
94a95,108
>   // Search
>   if (module_exists('search')) {
>     $search_modules = array();
>     foreach (module_implements('search') as $module) {
>       $search_modules[$module] = t(module_invoke($module, 'search', 'name', TRUE));
>     }
>     $items['search'] = array(
>       '#title' => t('Search'),
>       '#description' => t('Set this context when the selected searches have been executed.'),
>       '#options' => $search_modules,
>       '#type' => 'checkboxes',
>     );
>   }
> 
309a324,332
>  * Implementation of hook_form_alter() for search form.
>  */
> function context_form_search_form_alter(&$form, $form_state) {
>   if (search_get_keys()) {
>     context_set_by_condition('search', $form['module']['#value']);
>   }
> }
> 
> /**
