Page MenuHomePhabricator

D12615.diff
No OneTemporary

D12615.diff

diff --git a/src/applications/calendar/query/PhabricatorCalendarEventInviteeQuery.php b/src/applications/calendar/query/PhabricatorCalendarEventInviteeQuery.php
--- a/src/applications/calendar/query/PhabricatorCalendarEventInviteeQuery.php
+++ b/src/applications/calendar/query/PhabricatorCalendarEventInviteeQuery.php
@@ -59,28 +59,28 @@
$this->ids);
}
- if ($this->eventPHIDs) {
+ if ($this->eventPHIDs !== null) {
$where[] = qsprintf(
$conn_r,
'eventPHID IN (%Ls)',
$this->eventPHIDs);
}
- if ($this->inviteePHIDs) {
+ if ($this->inviteePHIDs !== null) {
$where[] = qsprintf(
$conn_r,
'inviteePHID IN (%Ls)',
$this->inviteePHIDs);
}
- if ($this->inviterPHIDs) {
+ if ($this->inviterPHIDs !== null) {
$where[] = qsprintf(
$conn_r,
'inviterPHID IN (%Ls)',
$this->inviterPHIDs);
}
- if ($this->statuses) {
+ if ($this->statuses !== null) {
$where[] = qsprintf(
$conn_r,
'status = %d',

File Metadata

Mime Type
text/plain
Expires
Sat, Mar 15, 9:47 AM (1 w, 6 h ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7689310
Default Alt Text
D12615.diff (1 KB)

Event Timeline