Changeset c9e9fe1 in github for program/include/rcube_template.php
- Timestamp:
- Jul 23, 2009 2:26:30 AM (4 years ago)
- Branches:
- master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
- Children:
- a01b3bf
- Parents:
- f134ad8
- File:
-
- 1 edited
-
program/include/rcube_template.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
program/include/rcube_template.php
r5499336 rc9e9fe1 811 811 812 812 // 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']; 815 815 } 816 816 … … 894 894 $attrib, 895 895 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' 899 898 ) 900 899 ); … … 903 902 $btn_content .= ' '.$attrib['label']; 904 903 } 905 $link_attrib = array('href', 'onclick', 'onmouseover', 'onmouseout', 'onmousedown', 'onmouseup', 't itle', 'target');904 $link_attrib = array('href', 'onclick', 'onmouseover', 'onmouseout', 'onmousedown', 'onmouseup', 'target'); 906 905 } 907 906 else if ($attrib['type']=='link') { … … 919 918 $attrib, 920 919 array( 921 'type', 'value', 'onclick', 922 'id', 'class', 'style', 'tabindex' 920 'type', 'value', 'onclick', 'id', 'class', 'style', 'tabindex' 923 921 ) 924 922 );
Note: See TracChangeset
for help on using the changeset viewer.
