? nodequeue_autocomplete.patch Index: nodequeue.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/nodequeue/nodequeue.module,v retrieving revision 1.116 diff -u -p -r1.116 nodequeue.module --- nodequeue.module 5 Jan 2011 06:13:22 -0000 1.116 +++ nodequeue.module 17 Jan 2011 22:59:39 -0000 @@ -2807,7 +2807,7 @@ function nodequeue_api_autocomplete($que } else { // Build the constant parts of the query. - $query->where('LOWER(n.title) LIKE LOWER(:string)', array(':string' => $string . '%')); + $query->where('LOWER(n.title) LIKE LOWER(:string)', array(':string' => '%%%' . $string . '%%%')); } // Call to the API.