X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=include%2Frss.inc.php;h=0117fc0f65c814b715a6e5ecf3cf2a3a293cbdd0;hb=59887c4a8a1f014c1f4107c43deda0d1be994f5d;hp=afe4c86965869e715cd45fca5072db0d49f0e48d;hpb=a3a049fc80d3707bcc76903ab89f73974c470c0c;p=platal.git diff --git a/include/rss.inc.php b/include/rss.inc.php index afe4c86..0117fc0 100644 --- a/include/rss.inc.php +++ b/include/rss.inc.php @@ -1,6 +1,6 @@ changeTpl($template, NO_SKIN); $page->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 = {?} ) + INNER JOIN auth_user_md5 AS u ON (a.id = u.user_id AND u.perms IN ("admin", "user")) + 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(); 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: ?>