diff options
author | thomascube <thomas@roundcube.net> | 2006-03-03 16:36:22 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2006-03-03 16:36:22 +0000 |
commit | fa1557f2c3cd6c02eb7e3099e658c4adc388f9db (patch) | |
tree | d9fff7d78e8a1a770de4c38f3dae27dad6a4e7cf | |
parent | ea7c46b4f37691702b8e78dea34c3e9a3afb232d (diff) |
Improved reading of POST and GET values
-rw-r--r-- | program/steps/mail/addcontact.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/steps/mail/addcontact.inc b/program/steps/mail/addcontact.inc index 722b0f287..a0e1e9394 100644 --- a/program/steps/mail/addcontact.inc +++ b/program/steps/mail/addcontact.inc @@ -23,7 +23,7 @@ $REMOTE_REQUEST = TRUE; if (!empty($_GET['_address'])) { - $contact_arr = $IMAP->decode_address_list(get_input_value('_address', RCUBE_INPUT_GET)); + $contact_arr = $IMAP->decode_address_list(get_input_value('_address', RCUBE_INPUT_GET, TRUE)); if (sizeof($contact_arr)) { $contact = $contact_arr[1]; |