summaryrefslogtreecommitdiff
path: root/themes/garland
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2010-09-11 05:01:19 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2010-09-11 05:01:19 +0000
commit8ce58d16744e44b1c166e820b88662197eaf6982 (patch)
tree8ef70757d2c7cd8d4f15ccc24d36b333683d640d /themes/garland
parenta18f95a87da67dc57e7972eb1336e5da76960736 (diff)
downloadbrdo-8ce58d16744e44b1c166e820b88662197eaf6982.tar.gz
brdo-8ce58d16744e44b1c166e820b88662197eaf6982.tar.bz2
#787634 by mgifford: Fixed Site title is read three times with VoiceOver in Garland.
Diffstat (limited to 'themes/garland')
-rw-r--r--themes/garland/page.tpl.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/themes/garland/page.tpl.php b/themes/garland/page.tpl.php
index 4266d9707..a9d86f0d8 100644
--- a/themes/garland/page.tpl.php
+++ b/themes/garland/page.tpl.php
@@ -10,16 +10,16 @@
<div id="logo-floater">
<?php if ($logo || $site_title): ?>
<?php if ($title): ?>
- <div id="branding"><strong><a href="<?php print $front_page ?>" title="<?php print $site_name_and_slogan ?>">
+ <div id="branding"><strong><a href="<?php print $front_page ?>">
<?php if ($logo): ?>
- <img src="<?php print $logo ?>" alt="<?php print $site_name_and_slogan ?>" id="logo" />
+ <img src="<?php print $logo ?>" alt="<?php print $site_name_and_slogan ?>" title="<?php print $site_name_and_slogan ?>" id="logo" />
<?php endif; ?>
<?php print $site_html ?>
</a></strong></div>
<?php else: /* Use h1 when the content title is empty */ ?>
- <h1 id="branding"><a href="<?php print $front_page ?>" title="<?php print $site_name_and_slogan ?>">
+ <h1 id="branding"><a href="<?php print $front_page ?>">
<?php if ($logo): ?>
- <img src="<?php print $logo ?>" alt="<?php print $site_name_and_slogan ?>" id="logo" />
+ <img src="<?php print $logo ?>" alt="<?php print $site_name_and_slogan ?>" title="<?php print $site_name_and_slogan ?>" id="logo" />
<?php endif; ?>
<?php print $site_html ?>
</a></h1>