diff options
author | Dries Buytaert <dries@buytaert.net> | 2001-09-06 07:43:48 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2001-09-06 07:43:48 +0000 |
commit | 19ff3e28fe221b819d16f055f7b37bf8a7985333 (patch) | |
tree | 0c4ce8ab0e39024f28fb4751aa69984ff5bcdcd6 | |
parent | 8a1b410adf950754d0cd6e150a55dc139cbf5d48 (diff) | |
download | brdo-19ff3e28fe221b819d16f055f7b37bf8a7985333.tar.gz brdo-19ff3e28fe221b819d16f055f7b37bf8a7985333.tar.bz2 |
- fixed HTML typo in search.inc which confused Mozilla - thanks Carl and
Keith.
-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"; } |