X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=modules%2Fevents%2Ffeed.inc.php;h=63ced8d32da2d10d5915dbe0ef063778e63ed1d0;hb=caa04db802a6ad12650360cf36fd2a730b7d69fb;hp=afa6396900846aac45f70b40fde78f0064e3d9fb;hpb=b58e5ac25d105716cef952d5c3933c695e357cbe;p=platal.git diff --git a/modules/events/feed.inc.php b/modules/events/feed.inc.php index afa6396..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,7 +42,7 @@ 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, @@ -53,7 +53,7 @@ class EventFeed extends PlFeed 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'];