X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;ds=sidebyside;f=include%2Frss.inc.php;h=3b07d78568e9216f371239a407501dba2faaf492;hb=f70f2bcdc077c220e40ecebaf569e097f6028743;hp=9b8b74b4d8ce51ab4d65f8adf428ade968fe3b64;hpb=5ddeb07cc787dd1dc3630a31f1528f5cc7c4d9b9;p=platal.git diff --git a/include/rss.inc.php b/include/rss.inc.php index 9b8b74b..3b07d78 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(); @@ -59,9 +50,12 @@ function init_rss($template, $alias, $hash, $require_uid = true) } } - 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: ?>