diff options
author | thomascube <thomas@roundcube.net> | 2007-11-25 19:45:38 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2007-11-25 19:45:38 +0000 |
commit | d5342aabcfeddb959cc286befe6de5bf35fe9d76 (patch) | |
tree | 7410b56bccbae610578060555a86535d0c1b9863 /program/steps/mail/rss.inc | |
parent | c5799618997716288169b6fbcd1251f76788cd49 (diff) |
More input sanitizing
Diffstat (limited to 'program/steps/mail/rss.inc')
-rw-r--r-- | program/steps/mail/rss.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/steps/mail/rss.inc b/program/steps/mail/rss.inc index 49d5c0efc..0d7d3c463 100644 --- a/program/steps/mail/rss.inc +++ b/program/steps/mail/rss.inc @@ -79,7 +79,7 @@ echo ' // Check if the user wants to override the default sortingmethode if (isset($_GET['_sort'])) - list($sort_col, $sort_order) = explode('_', $_GET['_sort']); + list($sort_col, $sort_order) = explode('_', get_input_value('_sort', RCUBE_INPUT_GET)); // Add message to output if ($messagecount > 0) |