--- rss.php.orig        Thu Jun 24 23:17:34 2004
+++ rss.php     Thu Jun 24 23:27:58 2004
@@ -28,6 +28,7 @@

 $type = (!empty($_GET['type']) && $_GET['type'] == 'co') ? 'co' : 'blog';
 $cat = (!empty($_GET['cat'])) ? $_GET['cat'] : '';
+$lang = (!empty($_GET['lang'])) ? $_GET['lang'] : '';

 # Connexion MySQL
 $con = new Connection(DB_USER,DB_PASS,DB_HOST,DB_DBASE);
@@ -71,7 +72,7 @@
 else
 {
        # Dernières nouvelles
-       $news = $blog->getLastNews(10,$cat);
+       $news = $blog->getLastNews(10,$cat,'post_dt DESC',false,$lang);
       
        $ts = strtotime($blog->getEarlierDate());
        $title = dc_blog_name;