summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2005-10-13 22:21:10 +0000
committerthomascube <thomas@roundcube.net>2005-10-13 22:21:10 +0000
commit14eafe4d89056b6a5bd383f15c2ca1de647f1d4e (patch)
tree2f5d2126ce09fbbb0c692bd07fdb8728e3bbc27d
parent455c2bd934e0dd708244e9e1c9fc7acd5d7b37e7 (diff)
Fixed bug #1325050; added alt-texts for IE
-rw-r--r--program/include/main.inc11
-rw-r--r--program/js/app.js4
-rw-r--r--skins/default/templates/managefolders.html2
3 files changed, 14 insertions, 3 deletions
diff --git a/program/include/main.inc b/program/include/main.inc
index 2e5be7b0e..1c413bb80 100644
--- a/program/include/main.inc
+++ b/program/include/main.inc
@@ -671,7 +671,7 @@ function rcube_xml_command($command, $str_attrib, $a_attrib=NULL)
// create and register a button
function rcube_button($attrib)
{
- global $CONFIG, $OUTPUT, $JS_OBJECT_NAME;
+ global $CONFIG, $OUTPUT, $JS_OBJECT_NAME, $BROWSER;
static $sa_buttons = array();
static $s_button_count = 100;
@@ -728,7 +728,14 @@ function rcube_button($attrib)
if ($attrib['alt'])
$attrib['alt'] = rep_specialchars_output(rcube_label($attrib['alt']));
-
+
+ // set title to alt attribute for IE browsers
+ if ($BROWSER['ie'] && $attrib['title'] && !$attrib['alt'])
+ {
+ $attrib['alt'] = $attrib['title'];
+ unset($attrib['title']);
+ }
+
// add empty alt attribute for XHTML compatibility
if (!isset($attrib['alt']))
$attrib['alt'] = '';
diff --git a/program/js/app.js b/program/js/app.js
index 3837a3179..fb0c4556d 100644
--- a/program/js/app.js
+++ b/program/js/app.js
@@ -1802,6 +1802,10 @@ function rcube_webmail()
}
if (row.cells[2].firstChild.tagName=='A')
row.cells[2].firstChild.onclick = new Function(this.ref+".command('delete-folder','"+name+"')");
+
+ var form;
+ if ((form = this.gui_objects.editform) && form.elements['_folder_name'])
+ form.elements['_folder_name'].value = '';
};
diff --git a/skins/default/templates/managefolders.html b/skins/default/templates/managefolders.html
index 99afd5c81..a3095c73c 100644
--- a/skins/default/templates/managefolders.html
+++ b/skins/default/templates/managefolders.html
@@ -10,7 +10,7 @@
<roundcube:include file="/includes/header.html" />
<roundcube:include file="/includes/settingstabs.html" />
-<form name="subscriptionform" action="./">
+<form name="subscriptionform" action="./" onsubmit="rcmail.command('create-folder');return false;">
<div id="folder-manager">
<roundcube:object name="foldersubscription" form="subscriptionform" id="subscription-table"