Skip to content

Commit 899e0e3

Browse files
committed
[smarcet] - #14585
* speakers announcements emails tweaks
1 parent 09a3d06 commit 899e0e3

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

summit/code/infrastructure/active_records/events/presentations/PresentationSpeaker.php

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -487,7 +487,14 @@ public function PublishedRegularPresentations
487487
}
488488
}
489489

490-
return new ArrayList($list);
490+
$result = [];
491+
foreach ($list as $p) {
492+
if ($p->SelectionStatus() == IPresentation::SelectionStatus_Accepted) {
493+
$result[] = $p;
494+
}
495+
}
496+
497+
return new ArrayList($result);
491498
}
492499

493500
/**

0 commit comments

Comments
 (0)