Override the behavior of title(). Get the title of the node.
Overrides Numeric::title_query
function title_query() {
$titles = array();
$nodes = node_load_multiple($this->value);
foreach ($nodes as $node) {
$titles[] = check_plain($node
->label());
}
return $titles;
}