Opened 4 years ago
Closed 4 years ago
#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 (3)
comment:1 Changed 4 years ago by Julius Caesar
- Cc kees@… added
comment:2 Changed 4 years ago by Julius Caesar
- Version changed from 0.2.1 to 0.2.2
comment:3 Changed 4 years ago by alec
- Milestone changed from later to 0.3-stable
- Resolution set to fixed
- Status changed from new to closed
Note: See
TracTickets for help on using
tickets.

Fixed in [9b2ccdd9].