Index: apachesolr_views_query.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/apachesolr_views/apachesolr_views_query.inc,v
retrieving revision 1.20
diff -u -p -r1.20 apachesolr_views_query.inc
--- apachesolr_views_query.inc	29 Sep 2009 01:35:46 -0000	1.20
+++ apachesolr_views_query.inc	30 Sep 2009 11:57:56 -0000
@@ -204,7 +204,7 @@ class apachesolr_views_query extends vie
       }
     }
     try {
-      // TODO: add in config screen on teh View instead of using apachesolr settings
+      // TODO: add in config screen on the View instead of using apachesolr settings
       // here we add in all the facet stuff for things that are turned on
       // we rely on the apachesolr_search module to provide them for us
       apachesolr_search_add_facet_params($this->_params, $this);
@@ -351,6 +351,22 @@ class apachesolr_views_query extends vie
     $view->execute_time = views_microtime() - $start_time;
   }
   
+  /**
+   * Set keywords in this query.
+   *
+   * @param $keys
+   *   New keywords
+   */
+  function set_keys($keys) {
+    $this->keys = $keys;
+  }
+
+  /**
+   * Get this query's keywords.
+   */
+  function get_keys() {
+    return $this->keys;
+  }
   
   /**
    * Add a field to retrieve.
