summaryrefslogtreecommitdiff
path: root/skins
diff options
context:
space:
mode:
authorsvncommit <devs@roundcube.net>2008-05-13 01:54:44 +0000
committersvncommit <devs@roundcube.net>2008-05-13 01:54:44 +0000
commitc17991c294c727ad3ff0b4656fd32e2b5f42397a (patch)
tree60ffb53a15d17575c5e38addabefdf65fac6271b /skins
parent84f5b78c6d885e2a3b9f17fdb12e220d948dceaa (diff)
fix script to show cc/bcc fields
Diffstat (limited to 'skins')
-rw-r--r--skins/default/templates/compose.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/skins/default/templates/compose.html b/skins/default/templates/compose.html
index f45c63bcb..25a3ef91f 100644
--- a/skins/default/templates/compose.html
+++ b/skins/default/templates/compose.html
@@ -164,10 +164,10 @@ function rcmail_prev_sibling(elm)
<script type="text/javascript">
<!--
-var cc_field = document.form._cc;
+var cc_field = document.getElementById('rcmcomposecc');
if (cc_field && cc_field.value!='')
rcmail_show_header_form('compose-cc', document.getElementById('addcclink'));
-var bcc_field = document.form._bcc;
+var bcc_field = document.getElementById('rcmcomposebcc');
if (bcc_field && bcc_field.value!='')
rcmail_show_header_form('compose-bcc', document.getElementById('addbcclink'));