Ticket #1485874 (closed Bugs: fixed)

Opened 15 months ago

Last modified 15 months ago

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

Changed 15 months ago by Julius Caesar

  • cc kees@… added

Changed 15 months ago by Julius Caesar

  • version changed from 0.2.1 to 0.2.2

Changed 15 months ago by alec

  • status changed from new to closed
  • resolution set to fixed
  • milestone changed from later to 0.3-stable

Fixed in r2548.

Note: See TracTickets for help on using tickets.