diff options
author | thomascube <thomas@roundcube.net> | 2007-05-18 11:29:25 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2007-05-18 11:29:25 +0000 |
commit | 8d07583f3920f27186ccc16ea1ecb49104f1e32d (patch) | |
tree | d78dc7781c357e9323313585c1cb20104a3a61ee /program/steps/mail/func.inc | |
parent | 3c3b3517c1d806c1602d09b216348954f17a8750 (diff) |
Use HTTP-POST requests for actions that change application state
Diffstat (limited to 'program/steps/mail/func.inc')
-rw-r--r-- | program/steps/mail/func.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/program/steps/mail/func.inc b/program/steps/mail/func.inc index 991c3c168..3fa089037 100644 --- a/program/steps/mail/func.inc +++ b/program/steps/mail/func.inc @@ -52,8 +52,8 @@ if (!isset($_SESSION['sort_order'])) $_SESSION['sort_order'] = $CONFIG['message_sort_order']; // set message set for search result -if (!empty($_GET['_search']) && isset($_SESSION['search'][$_GET['_search']])) - $IMAP->set_search_set($_SESSION['search'][$_GET['_search']]); +if (!empty($_REQUEST['_search']) && isset($_SESSION['search'][$_REQUEST['_search']])) + $IMAP->set_search_set($_SESSION['search'][$_REQUEST['_search']]); // define url for getting message parts |