summaryrefslogtreecommitdiff
path: root/program
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2005-11-02 22:49:02 +0000
committerthomascube <thomas@roundcube.net>2005-11-02 22:49:02 +0000
commit317219dafe98b70797ef853571c255de0654d4aa (patch)
tree3c5a989b8202ab5d80b5c7a13338f25fb1fc9d5c /program
parent6a35c82a3ca43546198361aefdea94b04ecb5457 (diff)
Added tab-index for compose form
Diffstat (limited to 'program')
-rw-r--r--program/steps/mail/compose.inc6
1 files changed, 3 insertions, 3 deletions
diff --git a/program/steps/mail/compose.inc b/program/steps/mail/compose.inc
index f70759914..0dc450205 100644
--- a/program/steps/mail/compose.inc
+++ b/program/steps/mail/compose.inc
@@ -83,7 +83,7 @@ function rcmail_compose_headers($attrib)
// pass the following attributes to the form class
$field_attrib = array('name' => '_from');
foreach ($attrib as $attr => $value)
- if (in_array($attr, array('id', 'class', 'style', 'size')))
+ if (in_array($attr, array('id', 'class', 'style', 'size', 'tabindex')))
$field_attrib[$attr] = $value;
// get this user's identities
@@ -146,14 +146,14 @@ function rcmail_compose_headers($attrib)
if (!$fname)
$fname = '_bcc';
- $allow_attrib = array('id', 'class', 'style', 'cols', 'rows', 'wrap');
+ $allow_attrib = array('id', 'class', 'style', 'cols', 'rows', 'wrap', 'tabindex');
$field_type = 'textarea';
break;
case 'replyto':
case 'reply-to':
$fname = '_replyto';
- $allow_attrib = array('id', 'class', 'style', 'size');
+ $allow_attrib = array('id', 'class', 'style', 'size', 'tabindex');
$field_type = 'textfield';
break;