summaryrefslogtreecommitdiff
path: root/modules/search.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2004-08-18 19:57:27 +0000
committerDries Buytaert <dries@buytaert.net>2004-08-18 19:57:27 +0000
commit83a739bd898094af5837d2b29863d8e988929e1b (patch)
tree957c07dd7b93fd1d074bb8609b22fe1e0c4f3992 /modules/search.module
parent0e36182c967685a55e02e48178f1d6cb64ad815e (diff)
downloadbrdo-83a739bd898094af5837d2b29863d8e988929e1b.tar.gz
brdo-83a739bd898094af5837d2b29863d8e988929e1b.tar.bz2
- Code improvements by Stefan: made all status messages consistent (and easier to translate).
Diffstat (limited to 'modules/search.module')
-rw-r--r--modules/search.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/search.module b/modules/search.module
index ef71e9493..68262ff63 100644
--- a/modules/search.module
+++ b/modules/search.module
@@ -367,7 +367,7 @@ function search_view() {
// Only perform search if there is non-whitespace search term:
if (trim($keys)) {
// Log the search keys:
- watchdog('search', t('search: "%keys"', array('%keys' => $keys)), l('view results', 'search', NULL, 'keys='. urlencode($keys)));
+ watchdog('search', t('Search: %keys.', array('%keys' => "<em>$keys</em>")), l(t('view results'), 'search', NULL, 'keys='. urlencode($keys)));
// Collect the search results:
$results = search_data($keys);