diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-12-29 17:14:27 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-12-29 17:14:27 +0000 |
commit | 80f34e5ab0c7b08e409fad2c6d148fa933423ce3 (patch) | |
tree | 8ee3f42d34bbd0c456dc678d03733941934e2e14 /includes/common.inc | |
parent | 90a5a6cf6e722767cb8f00dfdd5d12963b718e91 (diff) | |
download | brdo-80f34e5ab0c7b08e409fad2c6d148fa933423ce3.tar.gz brdo-80f34e5ab0c7b08e409fad2c6d148fa933423ce3.tar.bz2 |
- XHTML improvements: <b> -> <strong>. Patch by Stefan.
Diffstat (limited to 'includes/common.inc')
-rw-r--r-- | includes/common.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/includes/common.inc b/includes/common.inc index 5195c525f..87e28f961 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -289,7 +289,7 @@ function search_item($item, $type) { $output = module_invoke($type, "search_item", $item); } else { - $output = " <b><u><a href=\"". $item["link"] ."\">". $item["title"] ."</a></u></b><br />"; + $output = " <strong><u><a href=\"". $item["link"] ."\">". $item["title"] ."</a></u></strong><br />"; $output .= " <small>" . t($type) . ($item["user"] ? " - ". $item["user"] : "") ."". ($item["date"] ? " - ". format_date($item["date"], "small") : "") ."</small>"; $output .= "<br /><br />"; } @@ -344,10 +344,10 @@ function search_data($keys = NULL) { foreach (module_list() as $name) { if (module_hook($name, "search") && (!$edit["type"] || $edit["type"][$name]) && ($result = module_invoke($name, "search", $keys))) { if ($name == "node" || $name == "comment") { - $output .= "<p><b>". t("Matching ". $name ."s ranked in order of relevance") .":</b></p>"; + $output .= "<p><strong>". t("Matching %names ranked in order of relevance:", array("%name" => $name)) ."</strong></p>"; } else { - $output .= "<p><b>". t("Matching ". $name ."s") .":</b></p>"; + $output .= "<p><strong>". t("Matching ". $name .") .":</strong></p>"; } foreach ($result as $entry) { $output .= search_item($entry, $name); |