summaryrefslogtreecommitdiff
path: root/roundcubemail/program/steps
diff options
context:
space:
mode:
authorroundcube <roundcube@208e9e7b-5314-0410-a742-e7e81cd9613c>2005-11-02 22:49:02 +0000
committerroundcube <roundcube@208e9e7b-5314-0410-a742-e7e81cd9613c>2005-11-02 22:49:02 +0000
commit54d37b816e754157fc7141ddb517e33f821feeed (patch)
tree853f0910af449f34ac22f736f32b427d9171f60d /roundcubemail/program/steps
parent57ec5d55c3e501a84b622be6f3b0d8a17e42214c (diff)
Added tab-index for compose form
git-svn-id: https://svn.roundcube.net/trunk@74 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/steps')
-rw-r--r--roundcubemail/program/steps/mail/compose.inc6
1 files changed, 3 insertions, 3 deletions
diff --git a/roundcubemail/program/steps/mail/compose.inc b/roundcubemail/program/steps/mail/compose.inc
index f70759914..0dc450205 100644
--- a/roundcubemail/program/steps/mail/compose.inc
+++ b/roundcubemail/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;