Index: nodequeue.module
===================================================================
--- nodequeue.module	(revision 884)
+++ nodequeue.module	(working copy)
@@ -1367,7 +1367,10 @@
 /**
  * Page callback for autocomplete.
  */
-function nodequeue_autocomplete($sqid = NULL, $string = NULL) {
+function nodequeue_autocomplete() {
+  $args = func_get_args();
+  $sqid = array_shift($args);
+  $string = implode('/', $args);
   $matches = _nodequeue_autocomplete($sqid, $string);
   drupal_json(drupal_map_assoc($matches));
 }
@@ -1375,7 +1378,7 @@
 function _nodequeue_autocomplete($sqid, $string) {
   $output = array();
 
-  if (!$sqid || !is_numeric($sqid) || !$string) {
+  if (!is_numeric($sqid) || !$string) {
     return $output;
   }
 
