diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-04-21 10:43:19 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-04-21 10:43:19 +0000 |
| commit | 398e939c6ca8a5bbbfc488b81a4e3ed2114a8a7e (patch) | |
| tree | a82f6ecf7bef512e9980da0bc0ec1c7c8bf036c2 /roundcubemail/program/steps/mail/compose.inc | |
| parent | d058d498c86cd91e8cf4a8962f5fc1d3f2fb04a9 (diff) | |
- support _nosig param in compose URL (#1485604)
git-svn-id: https://svn.roundcube.net/trunk@2409 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/steps/mail/compose.inc')
| -rw-r--r-- | roundcubemail/program/steps/mail/compose.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/steps/mail/compose.inc b/roundcubemail/program/steps/mail/compose.inc index c93fa9be2..985c0e7a5 100644 --- a/roundcubemail/program/steps/mail/compose.inc +++ b/roundcubemail/program/steps/mail/compose.inc @@ -290,7 +290,7 @@ function rcmail_compose_header_from($attrib) $select_from->add(format_email_recipient($sql_arr['email'], $sql_arr['name']), $identity_id); // add signature to array - if (!empty($sql_arr['signature'])) + if (!empty($sql_arr['signature']) && empty($_SESSION['compose']['param']['_nosig'])) { $a_signatures[$identity_id]['text'] = $sql_arr['signature']; $a_signatures[$identity_id]['is_html'] = ($sql_arr['html_signature'] == 1) ? true : false; |
