summaryrefslogtreecommitdiff
path: root/modules/search/search.module
diff options
context:
space:
mode:
Diffstat (limited to 'modules/search/search.module')
-rw-r--r--modules/search/search.module4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/search/search.module b/modules/search/search.module
index 2e2dc2544..64ce8dff6 100644
--- a/modules/search/search.module
+++ b/modules/search/search.module
@@ -6,9 +6,9 @@ function search_help($section = "admin/help#search") {
switch ($section) {
case 'admin/help#search':
- $output = "<b>Search guidelines</b>";
+ $output = "<strong>Search guidelines</strong>";
$output .= "<p>The search page allows you to search the web site's content. You can specify multiple words, and they will all be searched for. You can also use wildcards, so 'walk*' will match 'walk', 'walking', 'walker', 'walkable' and so on. Furthermore, searches are not case sensitive so searching for 'walk', 'Walk' or 'WALK' will yield exactly the same results.</p>";
- $output .= "<b>Words excluded from the search</b>";
+ $output .= "<strong>Words excluded from the search</strong>";
$output .= "<p>Words that frequently occur, typically called 'noise words', are ignored. Example words are 'a', 'at', 'and', 'are', 'as', 'how', 'where', etc. Words shorter than %number letters are also ignored.</p>";
$output = t($output, array("%number" => variable_get("minimum_word_size", 2)));
break;