- fixed HTML typo in search.inc which confused Mozilla - thanks Carl and

Keith.
3.0.x
Dries Buytaert 2001-09-06 07:43:48 +00:00
parent 8a1b410adf
commit 19ff3e28fe
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ function search_data($keys, $type) {
if ($keys && $type && $result = module_invoke($type, "search", check_query($keys))) {
foreach ($result as $entry) {
$output .= "<p>\n";
$output .= " <b><u><a href=\"$entry[link]\" />$entry[title]</a></u></b><br />";
$output .= " <b><u><a href=\"$entry[link]\">$entry[title]</a></u></b><br />";
$output .= " <small>$entry[link]". ($entry[user] ? " - ". format_name($entry[user], $entry[name]) : "") ."". ($entry[date] ? " - ". format_date($entry[date], "small") : "") ."</small>";
$output .= "</p>\n";
}