X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=modules%2Fevents%2Ffeed.inc.php;h=63ced8d32da2d10d5915dbe0ef063778e63ed1d0;hb=caa04db802a6ad12650360cf36fd2a730b7d69fb;hp=2d9b966289ff3b25dbc488034c52b804d3962910;hpb=06f4daf9ceb56712582d81330896848a1a262894;p=platal.git diff --git a/modules/events/feed.inc.php b/modules/events/feed.inc.php index 2d9b966..63ced8d 100644 --- a/modules/events/feed.inc.php +++ b/modules/events/feed.inc.php @@ -1,6 +1,6 @@ next()) { $uf = UserFilter::getLegacy($body['promo_min'], $body['promo_max']); @@ -42,18 +42,18 @@ class EventFeed extends PlFeed return null; } - protected function fetch(PlUser &$user) + protected function fetch(PlUser $user) { global $globals; $events = XDB::iterator('SELECT e.id, e.titre AS title, e.texte, e.creation_date AS publication, e.post_id, p.attachmime IS NOT NULL AS photo, FIND_IN_SET(\'wiki\', e.flags) AS wiki, - e.user_id, e.promo_min, e.promo_max + e.uid, e.promo_min, e.promo_max FROM announces AS e LEFT JOIN announce_photos AS p ON (p.eid = e.id) - WHERE FIND_IN_SET("valide", e.flags) AND peremption >= NOW()'); + WHERE FIND_IN_SET("valide", e.flags) AND expiration >= NOW()'); $data = array(); while ($e = self::nextEvent($events, $user)) { - $author = User::getWithUID($e['user_id']); + $author = User::getWithUID($e['uid']); $promo = $author->promo(); $e['author'] = $author->fullName() . ($promo ? ' (' . $promo . ')' : ''); $e['link'] = $globals->baseurl . '/events#newsid' . $e['id'];