diff options
author | alecpl <alec@alec.pl> | 2009-05-27 10:01:01 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2009-05-27 10:01:01 +0000 |
commit | 9b2ccdd9cb567d73e00ade69dac0984e16718927 (patch) | |
tree | db060e4883a99c83f0b4c7bba337a0a68aa900eb /program | |
parent | ac4882f35d73aa843ded043f1b03900ddbb1104d (diff) |
- don't unset button title on IE (#1485874)
Diffstat (limited to 'program')
-rwxr-xr-x | program/include/rcube_template.php | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/program/include/rcube_template.php b/program/include/rcube_template.php index 51108f143..8c0a8d05d 100755 --- a/program/include/rcube_template.php +++ b/program/include/rcube_template.php @@ -766,10 +766,10 @@ class rcube_template extends rcube_html_page if ($attrib['alt']) { $attrib['alt'] = Q(rcube_label($attrib['alt'], $attrib['domain'])); } + // set title to alt attribute for IE browsers if ($this->browser->ie && $attrib['title'] && !$attrib['alt']) { $attrib['alt'] = $attrib['title']; - unset($attrib['title']); } // add empty alt attribute for XHTML compatibility @@ -797,9 +797,6 @@ class rcube_template extends rcube_html_page else if (in_array($attrib['command'], $a_static_commands)) { $attrib['href'] = rcmail_url($attrib['command']); } - else if ($attrib['command'] == 'permaurl' && !empty($this->env['permaurl'])) { - $attrib['href'] = $this->env['permaurl']; - } } // overwrite attributes |