diff options
| author | roundcube <roundcube@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2006-03-03 16:36:22 +0000 |
|---|---|---|
| committer | roundcube <roundcube@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2006-03-03 16:36:22 +0000 |
| commit | 7726d53f8e50602ced631cac1d46f09963a86594 (patch) | |
| tree | a5fec105614f0d2340610529ce6e0827c7ffd203 /roundcubemail/program | |
| parent | 6bc240dcaab767169572af1bc1eb24b1b01a9ca5 (diff) | |
Improved reading of POST and GET values
git-svn-id: https://svn.roundcube.net/trunk@160 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program')
| -rw-r--r-- | roundcubemail/program/steps/mail/addcontact.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/steps/mail/addcontact.inc b/roundcubemail/program/steps/mail/addcontact.inc index 722b0f287..a0e1e9394 100644 --- a/roundcubemail/program/steps/mail/addcontact.inc +++ b/roundcubemail/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]; |
