? handlers_apachesolr_views_handler_argument.inc.patch
Index: handlers/apachesolr_views_handler_argument.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/apachesolr_views/handlers/apachesolr_views_handler_argument.inc,v
retrieving revision 1.6
diff -r1.6 apachesolr_views_handler_argument.inc
21c21
<       $this->query->add_filter($this->real_field, apachesolr_views_query::escape_term($facet_value));
---
>       $this->query->add_filter($this->real_field, apachesolr_views_query::escape_term($facet_value), $this->options['not']);
27a28
>     $options['not'] = array('default' => FALSE);
41a43,49
> 
>     $form['not'] = array(
>       '#type' => 'checkbox',
>       '#title' => t('Exclude the argument'),
>       '#description' => t('If selected, the numbers entered in the argument will be excluded rather than limiting the view.'),
>       '#default_value' => !empty($this->options['not']),
>     );
