diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-07-07 09:45:38 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2010-07-07 09:45:38 +0000 |
| commit | 6a42b0002dc34ecbc1e5355ee6778a5f496df455 (patch) | |
| tree | dc3a9a89b1a15f2b2094483818142e4e18c3beca | |
| parent | 848d87216572555dc88e5af834838da1f977a2b6 (diff) | |
- Fix regression in init_compose_form() (#1486835)
git-svn-id: https://svn.roundcube.net/trunk@3806 208e9e7b-5314-0410-a742-e7e81cd9613c
| -rw-r--r-- | roundcubemail/skins/default/functions.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/roundcubemail/skins/default/functions.js b/roundcubemail/skins/default/functions.js index 29e7049a7..cff5b9271 100644 --- a/roundcubemail/skins/default/functions.js +++ b/roundcubemail/skins/default/functions.js @@ -306,10 +306,10 @@ init_compose_form: function() headers_div = document.getElementById('compose-headers-div'); if (cc_field && cc_field.value != '') - rcmail_show_header_form('cc'); + rcmail_ui.show_header_form('cc'); if (bcc_field && bcc_field.value != '') - rcmail_show_header_form('bcc'); + rcmail_ui.show_header_form('bcc'); // prevent from form data loss when pressing ESC key in IE if (bw.ie) { |
