diff options
author | Dries Buytaert <dries@buytaert.net> | 2001-05-20 19:30:39 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2001-05-20 19:30:39 +0000 |
commit | 532233a9792c2495ba31d1f0b211d61ddec9ea6e (patch) | |
tree | e8ccc139fb19fa72f5212a3507120b1c5ef00e81 /includes/search.inc | |
parent | 4f1cf00f9ea7b578b9966883b0182179006ddcb8 (diff) | |
download | brdo-532233a9792c2495ba31d1f0b211d61ddec9ea6e.tar.gz brdo-532233a9792c2495ba31d1f0b211d61ddec9ea6e.tar.bz2 |
- Removed includes/timer.inc: it has been integrated in common.inc.
- Fixed a bug in node.php: UnConeD forgot to update 1 node_get_object().
- I changed the look of theme_morelink() a bit: it might not look better,
but at least the output is "correct".
- Various small improvements.
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 11247c525..f15db5ee6 100644 --- a/includes/search.inc +++ b/includes/search.inc @@ -10,7 +10,7 @@ function search_form($keys) { } function search_data($keys, $type) { - if ($keys && $type && $result = module_invoke($type, "search", check_input($keys))) { + 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>"; |