When nodes are displayed on the search results, the user id is shown, not the value submitted as Authorship display setting.

Comments

matt b’s picture

Status: Active » Fixed

Add this case to authorship_nodeapi
case 'search result':
if ($name_rewrite = _authorship_name_rewrite($node)) {
$temp = $node->name;
$node->name = $name_rewrite;
$node->authorship = $temp;
}
break; // end 'search result'

seems to work for me...

Anonymous’s picture

Status: Fixed » Closed (fixed)