diff options
author | Tobias Hößl <tobias@hoessl.eu> | 2012-03-16 17:45:07 +0000 |
---|---|---|
committer | Tobias Hößl <tobias@hoessl.eu> | 2012-03-16 17:45:07 +0000 |
commit | 75823c23539fd009a6575dc125258afa7ce2bbc8 (patch) | |
tree | e60edf7a0420958f50c90ac37b2b08f7a8c57374 /mod | |
parent | 47e1b8d0c07d79c33f8b2de52145aa751d4b955a (diff) | |
download | volse-hubzilla-75823c23539fd009a6575dc125258afa7ce2bbc8.tar.gz volse-hubzilla-75823c23539fd009a6575dc125258afa7ce2bbc8.tar.bz2 volse-hubzilla-75823c23539fd009a6575dc125258afa7ce2bbc8.zip |
Use tabindex to enable easy navigation in the dialog to write private mails; Recipient -> Subject -> Text field (tabindex has to be set to the IFRAME element after TinyMCE started) -> Send button
Diffstat (limited to 'mod')
-rwxr-xr-x | mod/message.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/message.php b/mod/message.php index 55e313776..0907abd77 100755 --- a/mod/message.php +++ b/mod/message.php @@ -154,7 +154,7 @@ function message_content(&$a) { $preselect = (isset($a->argv[2])?array($a->argv[2]):false); - $select = contact_select('messageto','message-to-select', $preselect, 4, true); + $select = contact_select('messageto','message-to-select', $preselect, 4, true, false, false, 10); $tpl = get_markup_template('prv_message.tpl'); $o .= replace_macros($tpl,array( '$header' => t('Send Private Message'), |