diff options
author | thomascube <thomas@roundcube.net> | 2006-05-01 19:07:10 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2006-05-01 19:07:10 +0000 |
commit | 7e85e0a734dddc3cee710f5fb47cecfd3e109d27 (patch) | |
tree | 81ee76858ac749cf52e0d2ee79376f541c350e61 /skins/default | |
parent | 326e87a5d66f0e9a2cd5f34a6e27cd056b9746ad (diff) |
Fixed Opera bug with CC and BCC fields
Diffstat (limited to 'skins/default')
-rw-r--r-- | skins/default/templates/compose.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/skins/default/templates/compose.html b/skins/default/templates/compose.html index 0630a5713..e827a024a 100644 --- a/skins/default/templates/compose.html +++ b/skins/default/templates/compose.html @@ -13,7 +13,7 @@ function rcmail_toggle_display(id) var row, disp; if (row = document.getElementById(id)) { - disp = (!row.style.display || row.style.display=='none') ? (document.all ? 'block' : 'table-row') : 'none'; + disp = (!row.style.display || row.style.display=='none') ? ((document.all && !window.opera) ? 'block' : 'table-row') : 'none'; row.style.display = disp; } |