Index: misc/autocomplete.js
===================================================================
RCS file: /cvs/drupal/drupal/misc/autocomplete.js,v
retrieving revision 1.2
diff -u -r1.2 autocomplete.js
--- misc/autocomplete.js	25 May 2005 00:14:42 -0000	1.2
+++ misc/autocomplete.js	20 Jun 2005 10:39:54 -0000
@@ -230,11 +230,9 @@
  * Performs a cached and delayed search
  */
 ACDB.prototype.search = function(searchString) {
-  if (this.docache) {
-    this.searchString = searchString;
-    if (this.cache[searchString]) {
-      return this.match(this.cache[searchString]);
-    }
+  this.searchString = searchString;
+  if (this.cache[searchString]) {
+    return this.owner.found(this.cache[searchString]);
   }
   if (this.timer) {
     clearTimeout(this.timer);
