Function nodequeue_api_autocomplete.
<?php
// Call to the API.
$function = $queue->owner . "_nodequeue_autocomplete";
if (function_exists($function)) {
return $function($queue, $subqueue, $string, $where, $where_args);
}
?>But $where is not defined and $where_args - is allways empty.
| Comment | File | Size | Author |
|---|---|---|---|
| #1 | 1784670-nodequeue-fix-api_nodequeue_autocomplete.patch | 847 bytes | juampynr |
Comments
Comment #1
juampynr commentedHere is a patch that sends the query to $queue->owner . "_nodequeue_autocomplete" and removes $where and $where_args arguments as the former is undefined and the later is empty.
Comment #3
fizk commentedCommitted, thanks!