Changeset 14eafe4 in github
- Timestamp:
- Oct 13, 2005 6:21:10 PM (8 years ago)
- Branches:
- master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
- Children:
- 61bda79
- Parents:
- 455c2bd
- Files:
-
- 3 edited
-
program/include/main.inc (modified) (2 diffs)
-
program/js/app.js (modified) (1 diff)
-
skins/default/templates/managefolders.html (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
program/include/main.inc
r520c36a r14eafe4 672 672 function rcube_button($attrib) 673 673 { 674 global $CONFIG, $OUTPUT, $JS_OBJECT_NAME ;674 global $CONFIG, $OUTPUT, $JS_OBJECT_NAME, $BROWSER; 675 675 static $sa_buttons = array(); 676 676 static $s_button_count = 100; … … 729 729 if ($attrib['alt']) 730 730 $attrib['alt'] = rep_specialchars_output(rcube_label($attrib['alt'])); 731 731 732 // set title to alt attribute for IE browsers 733 if ($BROWSER['ie'] && $attrib['title'] && !$attrib['alt']) 734 { 735 $attrib['alt'] = $attrib['title']; 736 unset($attrib['title']); 737 } 738 732 739 // add empty alt attribute for XHTML compatibility 733 740 if (!isset($attrib['alt'])) -
program/js/app.js
r09941ea r14eafe4 1803 1803 if (row.cells[2].firstChild.tagName=='A') 1804 1804 row.cells[2].firstChild.onclick = new Function(this.ref+".command('delete-folder','"+name+"')"); 1805 1806 var form; 1807 if ((form = this.gui_objects.editform) && form.elements['_folder_name']) 1808 form.elements['_folder_name'].value = ''; 1805 1809 }; 1806 1810 -
skins/default/templates/managefolders.html
r4e17e6c r14eafe4 11 11 <roundcube:include file="/includes/settingstabs.html" /> 12 12 13 <form name="subscriptionform" action="./" >13 <form name="subscriptionform" action="./" onsubmit="rcmail.command('create-folder');return false;"> 14 14 15 15 <div id="folder-manager">
Note: See TracChangeset
for help on using the changeset viewer.
