View | Details | Raw Unified | Return to bug 96563
Collapse All | Expand All

(-)src/compose.php (-19 / +6 lines)
Lines 14-20 Link Here
14
 *    - Send mail
14
 *    - Send mail
15
 *    - Save As Draft
15
 *    - Save As Draft
16
 *
16
 *
17
 * $Id: compose.php,v 1.319.2.24 2004/02/05 04:59:47 jangliss Exp $
17
 * $Id: compose.php,v 1.319.2.25 2004/02/05 18:15:34 jangliss Exp $
18
 */
18
 */
19
19
20
/* Path for SquirrelMail required files. */
20
/* Path for SquirrelMail required files. */
Lines 49-72 sqgetGlobalVar('smaction',$action); Link Here
49
sqgetGlobalVar('session',$session);
49
sqgetGlobalVar('session',$session);
50
sqgetGlobalVar('mailbox',$mailbox);
50
sqgetGlobalVar('mailbox',$mailbox);
51
sqgetGlobalVar('identity',$identity);
51
sqgetGlobalVar('identity',$identity);
52
52
sqgetGlobalVar('send_to',$send_to);
53
if (sqgetGlobalVar('send_to',$send_to)) {
53
sqgetGlobalVar('send_to_cc',$send_to_cc);
54
    $send_to = decodeHeader($send_to);
54
sqgetGlobalVar('send_to_bcc',$send_to_bcc);
55
}
55
sqgetGlobalVar('subject',$subject);
56
if (sqgetGlobalVar('send_to_cc',$send_to_cc)) {
56
sqgetGlobalVar('body',$body);
57
    $send_to_cc = decodeHeader($send_to_cc);
58
}
59
if (sqgetGlobalVar('send_to_bcc',$send_to_bcc)) {
60
    $send_to_bcc = decodeHeader($send_to_bcc);
61
}
62
if (sqgetGlobalVar('subject',$subject)) {
63
    $subject = decodeHeader($subject);
64
}
65
if (sqgetGlobalVar('body',$body)) {
66
    $body = decodeHeader($body);
67
}
68
69
70
sqgetGlobalVar('mailprio',$mailprio);
57
sqgetGlobalVar('mailprio',$mailprio);
71
sqgetGlobalVar('request_mdn',$request_mdn);
58
sqgetGlobalVar('request_mdn',$request_mdn);
72
sqgetGlobalVar('request_dr',$request_dr);
59
sqgetGlobalVar('request_dr',$request_dr);

Return to bug 96563