Skip to content
Snippets Groups Projects
Commit 1d5a29a3 authored by Dries Buytaert's avatar Dries Buytaert
Browse files

- Log the search terms in a new watchdog category.
parent a9ef1826
No related branches found
No related tags found
No related merge requests found
......@@ -3,6 +3,7 @@ Drupal x.x.x, xxxx-xx-xx
- added support for the MetaWeblog API and MovableType extensions.
- added a file API: enables better document management.
- improved the watchdog and search module to log search keys.
- comment module:
* made it possible to disable the "comment viewing controls".
- performance:
......@@ -29,11 +30,18 @@ Drupal x.x.x, xxxx-xx-xx
- documentation:
* added PHPDoc/Doxygen comments.
Drupal 4.3.2, 2004-01-01
------------------------
- fixed bugs: no critical bugs were identified.
Drupal 4.3.1, 2003-12-01
------------------------
- fixed bugs: no critical bugs were identified.
Drupal 4.3.0, 2003-11-01
------------------------
......
......@@ -363,6 +363,9 @@ function search_view($keys) {
$output .= "<br />". $help_link ."<br />";
}
// Log the search keys:
watchdog("search", "search: '$keys'", l("view results", "search", NULL, "keys=". urlencode($keys)));
// Collect the search results:
$results = search_data($keys);
......
......@@ -363,6 +363,9 @@ function search_view($keys) {
$output .= "<br />". $help_link ."<br />";
}
// Log the search keys:
watchdog("search", "search: '$keys'", l("view results", "search", NULL, "keys=". urlencode($keys)));
// Collect the search results:
$results = search_data($keys);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment