X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=include%2Frss.inc.php;h=89d63ca00063eea71c94bffb3e4e640de927a65b;hb=730a173a333507926e0029d8a96c3a26b55756e4;hp=9dc4f86d6aeac812ba028c34cc75d515ab67d5f5;hpb=a7c29df3b9bf8f3c3b23fec0f1d2feb814cb61fe;p=platal.git diff --git a/include/rss.inc.php b/include/rss.inc.php index 9dc4f86..89d63ca 100644 --- a/include/rss.inc.php +++ b/include/rss.inc.php @@ -37,7 +37,8 @@ function init_rss($template, $alias, $hash, $require_uid = true) $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();