Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F310042
T15477
No One
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Advanced/Developer...
View Handle
View Hovercard
Authored By
aklapper
Jun 14 2023, 20:04
2023-06-14 20:04:22 (UTC+0)
Size
1 KB
Referenced Files
None
Subscribers
None
T15477
View Options
diff --git a/src/applications/calendar/storage/PhabricatorCalendarEvent.php b/src/applications/calendar/storage/PhabricatorCalendarEvent.php
index 941ec6220d..59e3c58038 100644
--- a/src/applications/calendar/storage/PhabricatorCalendarEvent.php
+++ b/src/applications/calendar/storage/PhabricatorCalendarEvent.php
@@ -602,27 +602,32 @@ final class PhabricatorCalendarEvent extends PhabricatorCalendarDAO
if ($this->getIsAllDay()) {
if ($show_end_date) {
return pht(
- '%s - %s, All Day',
+ '%s' . "\n" . '%s - %s, All Day',
+ $this->getName(),
phabricator_date($min_epoch, $viewer),
phabricator_date($max_epoch, $viewer));
} else {
return pht(
- '%s, All Day',
+ '%s' . "\n" . '%s, All Day',
+ $this->getName(),
phabricator_date($min_epoch, $viewer));
}
} else if ($show_end_date) {
return pht(
- '%s - %s',
+ '%s' . "\n" . '%s - %s',
+ $this->getName(),
phabricator_datetime($min_epoch, $viewer),
phabricator_datetime($max_epoch, $viewer));
} else if ($show_end) {
return pht(
- '%s - %s',
+ '%s' . "\n" . '%s - %s',
+ $this->getName(),
phabricator_datetime($min_epoch, $viewer),
phabricator_time($max_epoch, $viewer));
} else {
return pht(
- '%s',
+ '%s' . "\n" . '%s',
+ $this->getName(),
phabricator_datetime($min_epoch, $viewer));
}
}
File Metadata
Details
Attached
Mime Type
text/plain; charset=utf-8
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
210039
Default Alt Text
T15477 (1 KB)
Attached To
Mode
P15 T15477
Attached
Detach File
Event Timeline
Log In to Comment