Only show some profiles in events

This commit is contained in:
Evan Prodromou 2011-09-30 09:40:15 -04:00
parent 5df3c8bc4b
commit 3aad58c37f
2 changed files with 2 additions and 2 deletions

View File

@ -47,6 +47,7 @@ define('PROFILES_PER_MINILIST', 8);
class ProfileMiniList extends ProfileList
{
const MAX_PROFILES = PROFILES_PER_MINILIST; // put it in the class
function startList()
{

View File

@ -174,9 +174,8 @@ class EventListItem extends NoticeListItemAdapter
foreach ($responses as $response) {
$ids[] = $response->profile_id;
}
common_debug("IDS = " . implode(',', $ids));
$ids = array_slice($ids, 0, ProfileMiniList::MAX_PROFILES + 1);
$profiles = Profile::pivotGet('id', $ids);
common_debug("Profiles = " . print_r($profiles, true));
$profile = new ArrayWrapper(array_values($profiles));
$minilist = new ProfileMiniList($profile, $out);
$minilist->show();