diff options
author | thomascube <thomas@roundcube.net> | 2006-03-03 16:34:35 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2006-03-03 16:34:35 +0000 |
commit | ea7c46b4f37691702b8e78dea34c3e9a3afb232d (patch) | |
tree | 68820a04bbba541690f578a3a5e0602ab3b082ad /program/steps/mail/addcontact.inc | |
parent | 8eba3000888d596263eb2b8923dacd20cd816878 (diff) |
Improved reading of POST and GET values
Diffstat (limited to 'program/steps/mail/addcontact.inc')
-rw-r--r-- | program/steps/mail/addcontact.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/program/steps/mail/addcontact.inc b/program/steps/mail/addcontact.inc index b1129ec9d..722b0f287 100644 --- a/program/steps/mail/addcontact.inc +++ b/program/steps/mail/addcontact.inc @@ -21,9 +21,9 @@ $REMOTE_REQUEST = TRUE; -if ($_GET['_address']) +if (!empty($_GET['_address'])) { - $contact_arr = $IMAP->decode_address_list($_GET['_address']); + $contact_arr = $IMAP->decode_address_list(get_input_value('_address', RCUBE_INPUT_GET)); if (sizeof($contact_arr)) { $contact = $contact_arr[1]; |