summaryrefslogtreecommitdiff
path: root/roundcubemail/skins/default
diff options
context:
space:
mode:
authorestadtherr <estadtherr@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-05-13 01:54:44 +0000
committerestadtherr <estadtherr@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-05-13 01:54:44 +0000
commit625191648604d912ffeb7a0fadd64ae64f0a2eef (patch)
treecb612af947ed55858ab271163b12a7f2f2d3381d /roundcubemail/skins/default
parent265ec43ade38341a5eecb5128f1749474fbdabc8 (diff)
fix script to show cc/bcc fields
git-svn-id: https://svn.roundcube.net/trunk@1382 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/skins/default')
-rw-r--r--roundcubemail/skins/default/templates/compose.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/roundcubemail/skins/default/templates/compose.html b/roundcubemail/skins/default/templates/compose.html
index f45c63bcb..25a3ef91f 100644
--- a/roundcubemail/skins/default/templates/compose.html
+++ b/roundcubemail/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'));