Hello,

I'm having issues implementing the do_search() function of the drupal search module.

------

$block['subject'] = "Search results";

$results = do_search("joint", "livesearch");
$block['content'] = var_export($results, true);

return $block;

-------

I've verified that the search term ("joint") exists in the search database tables, and yet do_search() returns an empty array.

What's up?