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 /themes/chameleon/chameleon.theme | |
parent | 90a5a6cf6e722767cb8f00dfdd5d12963b718e91 (diff) | |
download | brdo-80f34e5ab0c7b08e409fad2c6d148fa933423ce3.tar.gz brdo-80f34e5ab0c7b08e409fad2c6d148fa933423ce3.tar.bz2 |
- XHTML improvements: <b> -> <strong>. Patch by Stefan.
Diffstat (limited to 'themes/chameleon/chameleon.theme')
-rw-r--r-- | themes/chameleon/chameleon.theme | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/themes/chameleon/chameleon.theme b/themes/chameleon/chameleon.theme index bbfb1c93e..3389b27af 100644 --- a/themes/chameleon/chameleon.theme +++ b/themes/chameleon/chameleon.theme @@ -67,7 +67,7 @@ function chameleon_header($title = "") { } if ($message = drupal_get_message()) { - $output .= "<b>". t("Status") ."</b>: ". $message->message ."<hr />"; + $output .= "<strong>". t("Status") ."</strong>: ". $message->message ."<hr />"; } return $output; |