Changeset ea7c46b in github for program/steps/mail/addcontact.inc


Ignore:
Timestamp:
Mar 3, 2006 11:34:35 AM (7 years ago)
Author:
thomascube <thomas@…>
Branches:
master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
Children:
fa1557f
Parents:
8eba300
Message:

Improved reading of POST and GET values

File:
1 edited

Legend:

Unmodified
Added
Removed
  • program/steps/mail/addcontact.inc

    r1cded85 rea7c46b  
    2222$REMOTE_REQUEST = TRUE; 
    2323 
    24 if ($_GET['_address']) 
     24if (!empty($_GET['_address'])) 
    2525  { 
    26   $contact_arr = $IMAP->decode_address_list($_GET['_address']); 
     26  $contact_arr = $IMAP->decode_address_list(get_input_value('_address', RCUBE_INPUT_GET)); 
    2727  if (sizeof($contact_arr)) 
    2828    { 
Note: See TracChangeset for help on using the changeset viewer.