Ticket #1485874 (closed Bugs: fixed)
Title attribute for IE Browsers
| Reported by: | Julius Caesar | Owned by: | |
|---|---|---|---|
| Priority: | 5 | Milestone: | 0.3-stable |
| Component: | User Interface | Version: | 0.2.2 |
| Severity: | normal | Keywords: | |
| Cc: | kees@… |
Description
In the source the title tag for IE Browsers is removed for button links.
From ./program/include/rcube_template.php
// set title to alt attribute for IE browsers
if ($this->browser->ie && $attrib['title'] && !$attrib['alt']) {
$attrib['alt'] = $attrib['title'];
unset($attrib['title']);
}
The title tag does not need to be removed from the link and is even required for IE8.
Can this be fixed in a future version?
Change History
Note: See
TracTickets for help on using
tickets.
