Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15283113
D8342.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D8342.diff
View Options
Index: src/applications/people/controller/PhabricatorPeopleProfileController.php
===================================================================
--- src/applications/people/controller/PhabricatorPeopleProfileController.php
+++ src/applications/people/controller/PhabricatorPeopleProfileController.php
@@ -167,9 +167,11 @@
$epoch_end = $next_day->format('U');
foreach ($statuses as $status) {
+ if ($status->getDateTo() < $epoch_start) {
+ continue;
+ }
if ($status->getDateFrom() >= $epoch_end) {
- // This list is sorted, so we can stop looking.
- break;
+ continue;
}
$event = new AphrontCalendarEventView();
@@ -180,19 +182,7 @@
$event->setName($status_text);
$event->setDescription($status->getDescription());
$event->setEventID($status->getID());
- $key = date('Y-m-d', $event->getEpochStart());
$events[$epoch_start][] = $event;
- // check if this is a multi day event...!
- $day_iterator = clone $day;
- while (true) {
- $day_iterator->modify('+ 1 day');
- $day_iterator_end = $day_iterator->format('U');
- if ($event->getEpochEnd() > $day_iterator_end) {
- $events[$day_iterator_end][] = $event;
- } else {
- break;
- }
- }
}
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Mar 5 2025, 5:26 AM (4 w, 2 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7221062
Default Alt Text
D8342.diff (1 KB)
Attached To
Mode
D8342: Fix calendar part 2
Attached
Detach File
Event Timeline
Log In to Comment