alecpl
2009-04-23 7a723522945b8954681171aa012b7ee1431a45cd
program/steps/mail/rss.inc
@@ -5,7 +5,7 @@
 | program/steps/mail/rss.inc                                            |
 |                                                                       |
 | This file is part of the RoundCube Webmail client                     |
 | Copyright (C) 2005, RoundCube Dev. - Switzerland                      |
 | Copyright (C) 2005-2007, RoundCube Dev. - Switzerland                 |
 | Licensed under the GNU GPL                                            |
 |                                                                       |
 | PURPOSE:                                                              |
@@ -19,14 +19,11 @@
*/
require_once('Mail/mimeDecode.php');
function rss_encode($string){
   $string = rep_specialchars_output($string, 'xml');
   return $string;
}
$REMOTE_REQUEST = TRUE;
@@ -79,7 +76,7 @@
// 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)
@@ -114,4 +111,4 @@
</rss>';
exit;
?>
?>