Merge branch 'platal-0.9.15'
[platal.git] / include / rss.inc.php
index 41ede2c..9dc4f86 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /***************************************************************************
- *  Copyright (C) 2003-2007 Polytechnique.org                              *
+ *  Copyright (C) 2003-2008 Polytechnique.org                              *
  *  http://opensource.polytechnique.org/                                   *
  *                                                                         *
  *  This program is free software; you can redistribute it and/or modify   *
@@ -28,21 +28,11 @@ function _rss_encode_date($d) {
     return date('r', $t);
 }
 
-function to_rss ($s)
-{
-    if(is_string($s)) {
-        return iconv('ISO_8859-15', 'UTF8', $s);
-    } else {
-        return $s;
-    }
-}
-
 function init_rss($template, $alias, $hash, $require_uid = true)
 {
     global $page;
     $page->changeTpl($template, NO_SKIN);
     $page->register_modifier('rss_date', '_rss_encode_date');
-    $page->default_modifiers = Array('@to_rss');
 
     $res = XDB::query(
         'SELECT  a.id
@@ -61,7 +51,7 @@ function init_rss($template, $alias, $hash, $require_uid = true)
 
     if ($template) {
         header('Content-Type: application/rss+xml; charset=utf8');
-    }    
+    }
     return $uid;
 }