diff options
-rw-r--r-- | includes/search.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/search.inc b/includes/search.inc index 8e74cd4f7..d1cdf9c97 100644 --- a/includes/search.inc +++ b/includes/search.inc @@ -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"; } |