Ignore:
Timestamp:
Jul 23, 2009 2:26:30 AM (4 years ago)
Author:
alecpl <alec@…>
Branches:
master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
Children:
a01b3bf
Parents:
f134ad8
Message:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • program/include/rcube_template.php

    r5499336 rc9e9fe1  
    811811 
    812812        // set title to alt attribute for IE browsers 
    813         if ($this->browser->ie && $attrib['title'] && !$attrib['alt']) { 
    814             $attrib['alt'] = $attrib['title']; 
     813        if ($this->browser->ie && !$attrib['title'] && $attrib['alt']) { 
     814            $attrib['title'] = $attrib['alt']; 
    815815        } 
    816816 
     
    894894                $attrib, 
    895895                array( 
    896                     'style', 'class', 'id', 'width', 
    897                     'height', 'border', 'hspace', 
    898                     'vspace', 'align', 'alt', 'tabindex' 
     896                    'style', 'class', 'id', 'width', 'height', 'border', 'hspace', 
     897                    'vspace', 'align', 'alt', 'tabindex', 'title' 
    899898                ) 
    900899            ); 
     
    903902                $btn_content .= ' '.$attrib['label']; 
    904903            } 
    905             $link_attrib = array('href', 'onclick', 'onmouseover', 'onmouseout', 'onmousedown', 'onmouseup', 'title', 'target'); 
     904            $link_attrib = array('href', 'onclick', 'onmouseover', 'onmouseout', 'onmousedown', 'onmouseup', 'target'); 
    906905        } 
    907906        else if ($attrib['type']=='link') { 
     
    919918                $attrib, 
    920919                array( 
    921                     'type', 'value', 'onclick', 
    922                     'id', 'class', 'style', 'tabindex' 
     920                    'type', 'value', 'onclick', 'id', 'class', 'style', 'tabindex' 
    923921                ) 
    924922            ); 
Note: See TracChangeset for help on using the changeset viewer.