diff options
author | Dries Buytaert <dries@buytaert.net> | 2001-03-25 10:57:01 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2001-03-25 10:57:01 +0000 |
commit | 1f79863053350f1a7d6cb654ac615123bc3b5133 (patch) | |
tree | bacfeada8244f49e0fd7ad38bc7bbbd6ac27bd57 /includes/search.inc | |
parent | d30751899897dc67f5f0563133ec14164cdfb993 (diff) | |
download | brdo-1f79863053350f1a7d6cb654ac615123bc3b5133.tar.gz brdo-1f79863053350f1a7d6cb654ac615123bc3b5133.tar.bz2 |
- large commit of everything else that has been queued in my backlog:
it's not 100% stable yet
Diffstat (limited to 'includes/search.inc')
-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 78ec7ed8e..47eefecd9 100644 --- a/includes/search.inc +++ b/includes/search.inc @@ -14,7 +14,7 @@ function search_data($keys, $type) { $result = module_execute($type, "find", $keys); foreach ($result as $entry) { $output .= "<P>\n"; - $output .= " <B><U><A HREF=\"$entry[link]\">$entry[subject]</A></U></B><BR>"; + $output .= " <B><U><A HREF=\"$entry[link]\">$entry[title]</A></U></B><BR>"; $output .= " <SMALL>$site_url$entry[link]". ($entry[user] ? " - ". format_username($entry[user]) : "") ."". ($entry[date] ? " - ". format_date($entry[date], "small") : "") ."</SMALL>"; $output .= "</P>\n"; } |