diff options
author | Dries Buytaert <dries@buytaert.net> | 2004-01-29 20:45:08 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2004-01-29 20:45:08 +0000 |
commit | 786a0cef084b3d9195b3bf2c9a85368051f7a7e8 (patch) | |
tree | fd4292241a7bcd2f222ecd53cbbd6c92b5664c76 | |
parent | df062323b223ad238c1555b1d2cccd8d8448d923 (diff) | |
download | brdo-786a0cef084b3d9195b3bf2c9a85368051f7a7e8.tar.gz brdo-786a0cef084b3d9195b3bf2c9a85368051f7a7e8.tar.bz2 |
- Fixed bug #5500 by pz: missing alt="" tag in Xtemplate theme.
-rw-r--r-- | themes/xtemplate/xtemplate.theme | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/themes/xtemplate/xtemplate.theme b/themes/xtemplate/xtemplate.theme index a0a56fa30..cfba361d0 100644 --- a/themes/xtemplate/xtemplate.theme +++ b/themes/xtemplate/xtemplate.theme @@ -102,7 +102,7 @@ function xtemplate_page($content, $title = NULL, $breadcrumb = NULL) { "head" => drupal_get_html_head(), "stylesheet" => variable_get("xtemplate_stylesheet", "themes/xtemplate/xtemplate.css"), "onload_attributes" => theme_onload_attribute(), - "logo" => variable_get("xtemplate_logo", "<img src=\"themes/xtemplate/images/druplicon.gif\" />"), + "logo" => variable_get("xtemplate_logo", "<img src=\"themes/xtemplate/images/druplicon.gif\" alt=\"Druplicon - Drupal logo\" />"), "primary_links" => variable_get("xtemplate_primary_links", l("edit primary links", "admin/system/themes/xtemplate")), "secondary_links" => variable_get("xtemplate_secondary_links", l("edit secondary links", "admin/system/themes/xtemplate")) )); |