X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=include%2Frss.inc.php;h=22a8a2b947ab9a96722345f519ca1d5f25acadb7;hb=145006c0ff77fa8a329616c2c8859191b2b236f7;hp=42b8ca142b91095092a90c062dc5a51bb8e5702a;hpb=50a40a33a496131e817df875607ea5542d096a64;p=platal.git diff --git a/include/rss.inc.php b/include/rss.inc.php index 42b8ca1..22a8a2b 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'); - if (preg_match(',^/([^/]+)/([^/]+)\.xml$,', $_SERVER['PATH_INFO'], $m)) { - $alias = $m[1]; - $hash = $m[2]; - $res = $globals->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(); + $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(); + + if (empty($uid)) { + if ($require_uid) { + exit; + } else { + $uid = null; + } } - if (empty($uid)) { exit; } - header('Content-Type: application/rss+xml; charset=utf8'); + if ($template) { + 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: ?>