We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 09a3d06 commit 899e0e3Copy full SHA for 899e0e3
1 file changed
summit/code/infrastructure/active_records/events/presentations/PresentationSpeaker.php
@@ -487,7 +487,14 @@ public function PublishedRegularPresentations
487
}
488
489
490
- return new ArrayList($list);
+ $result = [];
491
+ foreach ($list as $p) {
492
+ if ($p->SelectionStatus() == IPresentation::SelectionStatus_Accepted) {
493
+ $result[] = $p;
494
+ }
495
496
+
497
+ return new ArrayList($result);
498
499
500
/**
0 commit comments