diff options
-rw-r--r-- | CHANGELOG | 8 | ||||
-rw-r--r-- | modules/search.module | 3 | ||||
-rw-r--r-- | modules/search/search.module | 3 |
3 files changed, 14 insertions, 0 deletions
@@ -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 ------------------------ diff --git a/modules/search.module b/modules/search.module index 02738fe5d..3a3b6695d 100644 --- a/modules/search.module +++ b/modules/search.module @@ -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); diff --git a/modules/search/search.module b/modules/search/search.module index 02738fe5d..3a3b6695d 100644 --- a/modules/search/search.module +++ b/modules/search/search.module @@ -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); |