X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=include%2Frss.inc.php;h=9d38d3150c6cfd2053219269f245db7c74da6586;hb=655f53142c1af3bac8df90d62af0545493664467;hp=ba9ae91a575390c7b38a1e4a25b91c4234cb8b1f;hpb=08cce2ff528b38bde27cdec6d6bc28d6af4a42d4;p=platal.git diff --git a/include/rss.inc.php b/include/rss.inc.php index ba9ae91..9d38d31 100644 --- a/include/rss.inc.php +++ b/include/rss.inc.php @@ -1,6 +1,6 @@ register_modifier('rss_date', '_rss_encode_date'); - $page->default_modifiers = Array('@to_rss'); - - $res = XDB::query( - 'SELECT a.id - FROM aliases AS a - INNER JOIN auth_user_quick AS q ON ( a.id = q.user_id AND q.core_rss_hash = {?} ) - WHERE a.alias = {?} AND a.type != "homonyme"', $hash, $alias); - $uid = $res->fetchOneCell(); - + $page =& Platal::page(); + $page->changeTpl($template, NO_SKIN); + $uid = Platal::session()->tokenAuth($alias, $hash); if (empty($uid)) { - exit; + if ($require_uid) { + exit; + } else { + $uid = null; + } } - header('Content-Type: application/rss+xml; charset=utf8'); + if ($template) { + $page->assign('rss_hash', $hash); + header('Content-Type: application/rss+xml; charset=utf8'); + } return $uid; } -// vim:set et sw=4 sts=4 sws=4 foldmethod=marker: +// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8: ?>