if ($display_options == 'teaser') {
$output = '';
foreach ($items as $node) {
$output .= '<li>'. l($node->title, 'node/'. $node->nid);
$output .= ' - '. $node->teaser;
$output .= "</li>\n";
}
if ($output) {
echo "<ul>" . $output . "</ul>";
}
Comments
Comment #1
rmiddle commentedOk that is a minor change. It looks like it has already been done in 5.x Committed to CVS will be in the next release.
Thanks
Robert